diff options
author | Nico Rieck <nico.rieck@gmail.com> | 2014-02-16 07:28:50 +0000 |
---|---|---|
committer | Nico Rieck <nico.rieck@gmail.com> | 2014-02-16 07:28:50 +0000 |
commit | 0cead04d9f6b0e71811b18f4017c3596f28884b8 (patch) | |
tree | 334fe3b3742058edae74612b7514c1e08f1c0af8 /clang/test/CodeGenCXX/inline-functions.cpp | |
parent | 140db2767b470d2d9a8b2784b0e6aa31668f17be (diff) | |
download | bcm5719-llvm-0cead04d9f6b0e71811b18f4017c3596f28884b8.tar.gz bcm5719-llvm-0cead04d9f6b0e71811b18f4017c3596f28884b8.zip |
FileCheck's -LABEL cannot be combined with -NOT or -DAG
llvm-svn: 201476
Diffstat (limited to 'clang/test/CodeGenCXX/inline-functions.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/inline-functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/inline-functions.cpp b/clang/test/CodeGenCXX/inline-functions.cpp index 9f8e536a3b0..7c645148ae6 100644 --- a/clang/test/CodeGenCXX/inline-functions.cpp +++ b/clang/test/CodeGenCXX/inline-functions.cpp @@ -5,7 +5,7 @@ struct A { inline void f(); }; -// CHECK-NOT-LABEL: define void @_ZN1A1fEv +// CHECK-NOT: define void @_ZN1A1fEv void A::f() { } template<typename> struct B { }; |