aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Davis <cdavis@mines.edu>2012-05-28 00:43:56 +0000
committerCharles Davis <cdavis@mines.edu>2012-05-28 00:43:56 +0000
commitfb527dcaba83b130ff7ef9fc454b548d15d1abe6 (patch)
tree2f6a0217854d267d7a5c2a4a45f0cae6ad25ef8d
parente0cf31dc263979027f345c00318a704c5f5b1e76 (diff)
Test case for 157547. Before that patch, all the digits would be mangled
as zeroes. Now the digits are properly non-zero. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157552 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/mangle-ms-templates.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGenCXX/mangle-ms-templates.cpp b/test/CodeGenCXX/mangle-ms-templates.cpp
index 357cc3b0e9..b8138727a5 100644
--- a/test/CodeGenCXX/mangle-ms-templates.cpp
+++ b/test/CodeGenCXX/mangle-ms-templates.cpp
@@ -17,6 +17,12 @@ class BoolTemplate {
BoolTemplate() {}
};
+template<int param>
+class IntTemplate {
+ public:
+ IntTemplate() {}
+};
+
void template_mangling() {
Class<Typename> c1;
c1.method();
@@ -31,6 +37,12 @@ void template_mangling() {
BoolTemplate<true> _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 {