r333488 - Fix test failure after r333485.
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Tue May 29 18:22:14 PDT 2018
Author: ericwf
Date: Tue May 29 18:22:14 2018
New Revision: 333488
URL: http://llvm.org/viewvc/llvm-project?rev=333488&view=rev
Log:
Fix test failure after r333485.
I missed adjusting a test under Misc in the last commit.
This patch updates that test.
Modified:
cfe/trunk/test/Misc/diag-template-diffing.cpp
Modified: cfe/trunk/test/Misc/diag-template-diffing.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Misc/diag-template-diffing.cpp?rev=333488&r1=333487&r2=333488&view=diff
==============================================================================
--- cfe/trunk/test/Misc/diag-template-diffing.cpp (original)
+++ cfe/trunk/test/Misc/diag-template-diffing.cpp Tue May 29 18:22:14 2018
@@ -1265,7 +1265,7 @@ void test() {
foo<BoolT<true>>(X);
}
// CHECK-ELIDE-NOTREE: no matching function for call to 'foo'
-// CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'BoolT<false>' to 'BoolT<true>' for 1st argument
+// CHECK-ELIDE-NOTREE: candidate function template not viable: no known conversion from 'BoolT<false>' to 'BoolT<true>' for 1st argument
}
namespace DifferentIntegralTypes {
More information about the cfe-commits
mailing list