From 1e3e77e0b689fc3d2eab48d3a5179d6fed1941eb Mon Sep 17 00:00:00 2001 From: Saar Raz Date: Wed, 16 Oct 2019 02:56:40 +0000 Subject: Fix failing mangle-concept.cpp test. llvm-svn: 374971 --- clang/test/CodeGenCXX/mangle-concept.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/test/CodeGenCXX/mangle-concept.cpp') diff --git a/clang/test/CodeGenCXX/mangle-concept.cpp b/clang/test/CodeGenCXX/mangle-concept.cpp index 8f6d8171ab2..3ef7f2e02a0 100644 --- a/clang/test/CodeGenCXX/mangle-concept.cpp +++ b/clang/test/CodeGenCXX/mangle-concept.cpp @@ -6,11 +6,11 @@ template struct S {}; template concept C = true; template S> f0() { return S>{}; } template S> f0<>(); -// CHECK: void @_ZN5test12f0IiEENS_1SIXL_ZNS_1CIT_EEEEEEv() +// CHECK: void @_ZN5test12f0IiEENS_1SIXL_ZNS_1CIT_EEEEEEv( } template struct S {}; template concept C = true; template S> f0() { return S>{}; } template S> f0<>(); -// CHECK: void @_Z2f0IiE1SIXL_Z1CIT_EEEEv() \ No newline at end of file +// CHECK: void @_Z2f0IiE1SIXL_Z1CIT_EEEEv( -- cgit v1.2.3