diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-06-06 10:58:21 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-06-06 10:58:21 +0000 |
commit | 27700e28de9d1f8b7b71d9795001e09f1e961adc (patch) | |
tree | 3f850453f819461a4301d7b5ad871e58cd764b29 /clang/test/Frontend/optimization-remark.c | |
parent | e5c34ace7fe9991b010646d381402b9e3b27eeb8 (diff) | |
download | bcm5719-llvm-27700e28de9d1f8b7b71d9795001e09f1e961adc.tar.gz bcm5719-llvm-27700e28de9d1f8b7b71d9795001e09f1e961adc.zip |
Add -o /dev/null to one of the tests as it fails when run from a read-only checkout
llvm-svn: 210323
Diffstat (limited to 'clang/test/Frontend/optimization-remark.c')
-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 7e96a0ff53f..d99f32d567f 100644 --- a/clang/test/Frontend/optimization-remark.c +++ b/clang/test/Frontend/optimization-remark.c @@ -3,8 +3,8 @@ // always trigger the inliner, so it should be independent of the // optimization level. -// RUN: %clang_cc1 %s -Rpass=inline -Rpass-analysis=inline -Rpass-missed=inline -O0 -gline-tables-only -emit-llvm-only -verify -S -// RUN: %clang_cc1 %s -DNDEBUG -Rpass=inline -emit-llvm-only -verify -S +// RUN: %clang_cc1 %s -Rpass=inline -Rpass-analysis=inline -Rpass-missed=inline -O0 -gline-tables-only -emit-llvm-only -verify -S -o /dev/null +// RUN: %clang_cc1 %s -DNDEBUG -Rpass=inline -emit-llvm-only -verify -S -o /dev/null int foo(int x, int y) __attribute__((always_inline)); int foo(int x, int y) { return x + y; } |