r227071 - Remove -verify from a codegen test that didn't have any expected-foo lines.

Nico Weber nicolasweber at gmx.de
Sun Jan 25 21:47:24 PST 2015


Author: nico
Date: Sun Jan 25 23:47:24 2015
New Revision: 227071

URL: http://llvm.org/viewvc/llvm-project?rev=227071&view=rev
Log:
Remove -verify from a codegen test that didn't have any expected-foo lines.

Makes the error output of the test more readable when it fails. Also allows
removing a "not" from the run line.

Modified:
    cfe/trunk/test/CodeGenCXX/const-init-cxx11.cpp

Modified: cfe/trunk/test/CodeGenCXX/const-init-cxx11.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/const-init-cxx11.cpp?rev=227071&r1=227070&r2=227071&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/const-init-cxx11.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/const-init-cxx11.cpp Sun Jan 25 23:47:24 2015
@@ -1,4 +1,4 @@
-// RUN: not %clang_cc1 -verify -triple x86_64-apple-darwin -emit-llvm -o - %s -std=c++11 | FileCheck %s
+// RUN: %clang_cc1 -w -triple x86_64-apple-darwin -emit-llvm -o - %s -std=c++11 | FileCheck %s
 
 // FIXME: The padding in all these objects should be zero-initialized.
 namespace StructUnion {





More information about the cfe-commits mailing list