blob: 6cda928662728b33f130b3da68fb6dcd95771b9b [file] [log] [blame]
Chris Lattner04d519e2007-07-15 22:30:34 +00001// RUN: %llvmgcc -S %s -o - -O | grep ashr
2// RUN: %llvmgcc -S %s -o - -O | not grep sdiv
3
4int test(int *A, int *B) {
5 return A-B;
6}