new testcase

llvm-svn: 39882
This commit is contained in:
Chris Lattner 2007-07-15 22:30:34 +00:00
parent d4fef8dbca
commit ec6480e235
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
// RUN: %llvmgcc -S %s -o - -O | grep ashr
// RUN: %llvmgcc -S %s -o - -O | not grep sdiv
int test(int *A, int *B) {
return A-B;
}