Skip to content

Commit

Permalink
Merge pull request #4781 from redstar/cppmangle
Browse files Browse the repository at this point in the history
Add Visual C++ mangling for cent/ucent.
  • Loading branch information
yebblies committed Jun 28, 2015
2 parents 6071f1d + 0216391 commit 74b9c64
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cppmangle.c
Original file line number Diff line number Diff line change
Expand Up @@ -988,6 +988,8 @@ class VisualCPPMangler : public Visitor
case Tfloat32: buf.writeByte('M'); break;
case Tint64: buf.writestring("_J"); break;
case Tuns64: buf.writestring("_K"); break;
case Tint128: buf.writestring("_L"); break;
case Tuns128: buf.writestring("_M"); break;
case Tfloat64: buf.writeByte('N'); break;
case Tbool: buf.writestring("_N"); break;
case Tchar: buf.writeByte('D'); break;
Expand Down

0 comments on commit 74b9c64

Please sign in to comment.