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 | 3a4a4c5228bcbfa7c705b7e7468b1c32a78e0743 (patch) | |
tree | 72b823322f0deb2f5e4a2a931c6d825fca099811 /clang/test/CodeGenCXX/mangle.cpp | |
parent | c737ac18164950eed9836e0c9a1b066f2bf8173c (diff) | |
download | bcm5719-llvm-3a4a4c5228bcbfa7c705b7e7468b1c32a78e0743.tar.gz bcm5719-llvm-3a4a4c5228bcbfa7c705b7e7468b1c32a78e0743.zip |
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.
llvm-svn: 134213
Diffstat (limited to 'clang/test/CodeGenCXX/mangle.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/mangle.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/mangle.cpp b/clang/test/CodeGenCXX/mangle.cpp index d3978bc8012..e76dfb1c963 100644 --- a/clang/test/CodeGenCXX/mangle.cpp +++ b/clang/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( } } |