diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/CodeGenCXX/copy-constructor-elim.cpp | |
parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) |
Diffstat (limited to 'test/CodeGenCXX/copy-constructor-elim.cpp')
-rw-r--r-- | test/CodeGenCXX/copy-constructor-elim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/copy-constructor-elim.cpp b/test/CodeGenCXX/copy-constructor-elim.cpp index c883584fe02f..ad3a87b9d5f8 100644 --- a/test/CodeGenCXX/copy-constructor-elim.cpp +++ b/test/CodeGenCXX/copy-constructor-elim.cpp @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -emit-llvm -o %t %s -// RUN: grep "_ZN1CC1ERK1C" %t | count 0 -// RUN: grep "_ZN1SC1ERK1S" %t | count 0 +// RUN: not grep "_ZN1CC1ERK1C" %t +// RUN: not grep "_ZN1SC1ERK1S" %t extern "C" int printf(...); |