diff options
-rw-r--r-- | clang/test/Frontend/optimization-remark.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Frontend/optimization-remark.c b/clang/test/Frontend/optimization-remark.c index d5345b546a5..53edeed4f0e 100644 --- a/clang/test/Frontend/optimization-remark.c +++ b/clang/test/Frontend/optimization-remark.c @@ -2,10 +2,10 @@ // designed to always trigger the inliner, so it should be independent // of the optimization level. -// RUN: %clang -c %s -Rpass=inline -O0 -gline-tables-only -o /dev/null 2> %t.err +// RUN: %clang -c %s -Rpass=inline -O0 -gline-tables-only -S -o /dev/null 2> %t.err // RUN: FileCheck < %t.err %s --check-prefix=INLINE -// RUN: %clang -c %s -Rpass=inline -O0 -o /dev/null 2> %t.err +// RUN: %clang -c %s -Rpass=inline -O0 -S -o /dev/null 2> %t.err // RUN: FileCheck < %t.err %s --check-prefix=INLINE-NO-LOC int foo(int x, int y) __attribute__((always_inline)); |