Skip to content
Snippets Groups Projects
Commit fb527dca authored by Charles Davis's avatar Charles Davis
Browse files

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
parent e0cf31dc
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,12 @@ class BoolTemplate { ...@@ -17,6 +17,12 @@ class BoolTemplate {
BoolTemplate() {} BoolTemplate() {}
}; };
template<int param>
class IntTemplate {
public:
IntTemplate() {}
};
void template_mangling() { void template_mangling() {
Class<Typename> c1; Class<Typename> c1;
c1.method(); c1.method();
...@@ -31,6 +37,12 @@ void template_mangling() { ...@@ -31,6 +37,12 @@ void template_mangling() {
BoolTemplate<true> _true; BoolTemplate<true> _true;
// CHECK: call {{.*}} @"\01??0?$BoolTemplate@$00@@QAE@XZ" // 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 { namespace space {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment