blob: 03626c926528c31d811c27d463f0393d3225fec4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - -O | grep ashr
2// RUN: %llvmgcc -S %s -o - -O | not grep sdiv
3
Chandler Carruth1d8194d2007-07-23 22:42:15 +00004long long test(int *A, int *B) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00005 return A-B;
6}