diff --git a/llvm/test/CFrontend/exact-div-expr.c b/llvm/test/CFrontend/exact-div-expr.c index 6cda92866272..03626c926528 100644 --- a/llvm/test/CFrontend/exact-div-expr.c +++ b/llvm/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; }