From: Rafael Espindola Date: Sat, 3 Jan 2015 00:28:47 +0000 (+0000) Subject: Remove -Werror from test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa653d508742078ffacc97a47dcd6ef9b2459672;p=clang Remove -Werror from test. It is not needed since we FileCheck for the warning and -Werror itself can end up unused. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@225102 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/clang-s-opts.s b/test/Driver/clang-s-opts.s index 56421fba46..f29270882f 100644 --- a/test/Driver/clang-s-opts.s +++ b/test/Driver/clang-s-opts.s @@ -1,4 +1,4 @@ -// RUN: %clang -### -c -Werror -flto -fno-lto %s 2>&1 | FileCheck %s -// RUN: %clang -### -c -Werror -flto -fno-lto -fno-integrated-as %s 2>&1 | FileCheck %s +// RUN: %clang -### -c -flto -fno-lto %s 2>&1 | FileCheck %s +// RUN: %clang -### -c -flto -fno-lto -fno-integrated-as %s 2>&1 | FileCheck %s // CHECK-NOT: argument unused during compilation