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
BoolTemplate() {}
};
+template<int param>
+class IntTemplate {
+ public:
+ IntTemplate() {}
+};
+
void template_mangling() {
Class<Typename> c1;
c1.method();
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 {