Eliminate &&s in tests.
 - 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86430 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/implicit-instantiation-1.cpp b/test/CodeGenCXX/implicit-instantiation-1.cpp
index f6c6114..614a041 100644
--- a/test/CodeGenCXX/implicit-instantiation-1.cpp
+++ b/test/CodeGenCXX/implicit-instantiation-1.cpp
@@ -1,4 +1,4 @@
-// RUN: clang-cc -emit-llvm %s -o %t &&
+// RUN: clang-cc -emit-llvm %s -o %t
 
 template<typename T>
 struct X {
@@ -11,16 +11,16 @@
 };
 
 void foo(X<int> &xi, X<float> *xfp, int i, float f) {
-  // RUN: grep "linkonce_odr.*_ZN1XIiE1fEi" %t | count 1 &&
+  // RUN: grep "linkonce_odr.*_ZN1XIiE1fEi" %t | count 1
   xi.f(i);
   
-  // RUN: grep "linkonce_odr.*_ZN1XIiE1gEi" %t | count 1 &&
+  // RUN: grep "linkonce_odr.*_ZN1XIiE1gEi" %t | count 1
   xi.g(f);
   
-  // RUN: grep "linkonce_odr.*_ZN1XIfE1fEf" %t | count 1 &&
+  // RUN: grep "linkonce_odr.*_ZN1XIfE1fEf" %t | count 1
   xfp->f(f);
   
-  // RUN: grep "linkonce_odr.*_ZN1XIfE1hEf" %t | count 0 &&
+  // RUN: grep "linkonce_odr.*_ZN1XIfE1hEf" %t | count 0
   
   // RUN: true
 }