From: Timur Iskhodzhanov Date: Fri, 6 Jun 2014 10:58:21 +0000 (+0000) Subject: Add -o /dev/null to one of the tests as it fails when run from a read-only checkout X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7e86cbaaad4aafc848f4518e7abe90eac9013ee6;p=clang Add -o /dev/null to one of the tests as it fails when run from a read-only checkout git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210323 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Frontend/optimization-remark.c b/test/Frontend/optimization-remark.c index 7e96a0ff53..d99f32d567 100644 --- a/test/Frontend/optimization-remark.c +++ b/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; }