]> granicus.if.org Git - clang/commitdiff
Add -o /dev/null to one of the tests as it fails when run from a read-only checkout
authorTimur Iskhodzhanov <timurrrr@google.com>
Fri, 6 Jun 2014 10:58:21 +0000 (10:58 +0000)
committerTimur Iskhodzhanov <timurrrr@google.com>
Fri, 6 Jun 2014 10:58:21 +0000 (10:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210323 91177308-0d34-0410-b5e6-96231b3b80d8

test/Frontend/optimization-remark.c

index 7e96a0ff53f64518a01025afe214e26ffe5c6c59..d99f32d567f0a2297850c21013e7adfcff0b26ca 100644 (file)
@@ -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; }