1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/FrontendC/exact-div-expr.c

7 lines
142 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - -O1 | grep ashr
// RUN: %llvmgcc -S %s -o - -O1 | not grep sdiv
2007-07-16 00:30:34 +02:00
long long test(int *A, int *B) {
2007-07-16 00:30:34 +02:00
return A-B;
}