1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

new testcase

llvm-svn: 39882
This commit is contained in:
Chris Lattner 2007-07-15 22:30:34 +00:00
parent f6a91d74e0
commit f2fd4e185e

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;
}