diff options
author | Anders Carlsson <andersca@mac.com> | 2009-09-17 03:48:45 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-09-17 03:48:45 +0000 |
commit | 511ec0579593296d28f63a940847c38867329073 (patch) | |
tree | bfc45c2825034f9f32e202e4c98cc680736d1101 /test/CodeGenCXX/function-template-specialization.cpp | |
parent | 9234b7ff2bb99479fb97d5faa181a55aacf28b78 (diff) |
Get rid of the last grep.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82115 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/function-template-specialization.cpp')
-rw-r--r-- | test/CodeGenCXX/function-template-specialization.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/function-template-specialization.cpp b/test/CodeGenCXX/function-template-specialization.cpp index e189f5dc73..8dbaf2fe4d 100644 --- a/test/CodeGenCXX/function-template-specialization.cpp +++ b/test/CodeGenCXX/function-template-specialization.cpp @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm %s -o %t && FileCheck %s --input-file=%t +// RUN: clang-cc -emit-llvm %s -o - | FileCheck %s template<typename T, typename U> T* next(T* ptr, const U& diff); @@ -23,6 +23,6 @@ T* next(T* ptr, const U& diff); void test2(int *iptr, double *dptr, int diff) { iptr = next(iptr, diff); // FIXME: should be "_Z4nextIdiEPT_S1_RKT0_" - // RUN: grep "_Z4nextIiiEPT_S0_RKT0_" %t + // CHECK: _Z4nextIiiEPT_S0_RKT0_ dptr = next(dptr, diff); } |