From 27700e28de9d1f8b7b71d9795001e09f1e961adc Mon Sep 17 00:00:00 2001 From: Timur Iskhodzhanov Date: Fri, 6 Jun 2014 10:58:21 +0000 Subject: [PATCH] Add -o /dev/null to one of the tests as it fails when run from a read-only checkout llvm-svn: 210323 --- clang/test/Frontend/optimization-remark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/Frontend/optimization-remark.c b/clang/test/Frontend/optimization-remark.c index 7e96a0f..d99f32d 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; } -- 2.7.4