[cfe-commits] [PATCH] [VCPP] Mangle template parameters pack
Charles Davis
cdavis5x at gmail.com
Mon Nov 5 13:35:30 PST 2012
I'm the owner of the Microsoft C++ mangler code, so feel free to add me as a reviewer in the future.
================
Comment at: lib/AST/MicrosoftMangle.cpp:1235-1239
@@ -1220,2 +1234,7 @@
Out << 'Q';
+
+ // mangle __ptr64
+ if (getASTContext().getTargetInfo().getPointerWidth(0) == 64)
+ Out << 'E';
+
}
----------------
Can you split this part into a separate patch?
http://llvm-reviews.chandlerc.com/D99
More information about the cfe-commits
mailing list