From: Charles Davis Date: Mon, 28 May 2012 00:43:56 +0000 (+0000) Subject: Test case for 157547. Before that patch, all the digits would be mangled X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fb195b683ba1d4627da76707bd1a7d1c611dab5;p=platform%2Fupstream%2Fllvm.git Test case for 157547. Before that patch, all the digits would be mangled as zeroes. Now the digits are properly non-zero. llvm-svn: 157552 --- diff --git a/clang/test/CodeGenCXX/mangle-ms-templates.cpp b/clang/test/CodeGenCXX/mangle-ms-templates.cpp index 357cc3b..b813872 100644 --- a/clang/test/CodeGenCXX/mangle-ms-templates.cpp +++ b/clang/test/CodeGenCXX/mangle-ms-templates.cpp @@ -17,6 +17,12 @@ class BoolTemplate { BoolTemplate() {} }; +template +class IntTemplate { + public: + IntTemplate() {} +}; + void template_mangling() { Class c1; c1.method(); @@ -31,6 +37,12 @@ void template_mangling() { BoolTemplate _true; // CHECK: call {{.*}} @"\01??0?$BoolTemplate@$00@@QAE@XZ" + + IntTemplate<11> eleven; +// CHECK: call {{.*}} @"\01??0?$IntTemplate@$0L@@@QAE@XZ" + + IntTemplate<65535> ffff; +// CHECK: call {{.*}} @"\01??0?$IntTemplate@$0PPPP@@@QAE@XZ" } namespace space {