mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-23 12:08:25 +00:00
f2fd4e185e
llvm-svn: 39882
7 lines
134 B
C
7 lines
134 B
C
// 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;
|
|
}
|