diff options
Diffstat (limited to 'llvm/test/FrontendC/exact-div-expr.c')
-rw-r--r-- | llvm/test/FrontendC/exact-div-expr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/test/FrontendC/exact-div-expr.c b/llvm/test/FrontendC/exact-div-expr.c new file mode 100644 index 00000000000..9dce922f953 --- /dev/null +++ b/llvm/test/FrontendC/exact-div-expr.c @@ -0,0 +1,6 @@ +// RUN: %llvmgcc -S %s -o - -O1 | grep ashr +// RUN: %llvmgcc -S %s -o - -O1 | not grep sdiv + +long long test(int *A, int *B) { + return A-B; +} |