blob: 9dce922f95325752841ab75d40fe90b731885bdc [file] [log] [blame]
Reid Spencer5e8e3e42007-07-29 18:23:22 +00001// RUN: %llvmgcc -S %s -o - -O1 | grep ashr
2// RUN: %llvmgcc -S %s -o - -O1 | not grep sdiv
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003
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}