diff options
-rw-r--r-- | test/CFrontend/exact-div-expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CFrontend/exact-div-expr.c b/test/CFrontend/exact-div-expr.c index 6cda928662..03626c9265 100644 --- a/test/CFrontend/exact-div-expr.c +++ b/test/CFrontend/exact-div-expr.c @@ -1,6 +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) { +long long test(int *A, int *B) { return A-B; } |