diff options
author | John McCall <rjmccall@apple.com> | 2011-07-01 00:04:39 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-07-01 00:04:39 +0000 |
commit | 68a51a7f9c01ccbe7232d41beeb4deb26f40b013 (patch) | |
tree | 44eda4acb2be889d063562caee02d6b0fdc67e6b /test | |
parent | b44e0cf937baf99578b2a5bdf5066c730247d424 (diff) |
Change the mangling of enclosing template template parameters
that serve as the base template name of an unresolved-name to
be mangled as a substitution.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134213 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGenCXX/mangle.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/CodeGenCXX/mangle.cpp b/test/CodeGenCXX/mangle.cpp index d3978bc801..e76dfb1c96 100644 --- a/test/CodeGenCXX/mangle.cpp +++ b/test/CodeGenCXX/mangle.cpp @@ -748,8 +748,6 @@ namespace test30 { void test() { A<B>::foo<int>(0); - // FIXME: it's not clear what this mangling should be; maybe this? - // call void @_ZN6test301AINS_1BEE3fooIiEEvDTclsrS1_IT_EE2fnEE( - // Currently it's 1B instead of S1_. + // CHECK: call void @_ZN6test301AINS_1BEE3fooIiEEvDTclsrS1_IT_EE2fnEE( } } |