Skip to content

Commit

Permalink
Add C++ mangling for cent/ucent.
Browse files Browse the repository at this point in the history
  • Loading branch information
redstar committed Apr 9, 2015
1 parent 9a61591 commit 491ba86
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cppmangle.c
Expand Up @@ -617,6 +617,8 @@ class CppMangleVisitor : public Visitor
case Tfloat32: c = 'f'; break;
case Tint64: c = (Target::c_longsize == 8 ? 'l' : 'x'); break;
case Tuns64: c = (Target::c_longsize == 8 ? 'm' : 'y'); break;
case Tint128: c = 'n'; break;
case Tuns128: c = 'o'; break;
case Tfloat64: c = 'd'; break;
case Tfloat80: c = (Target::realsize - Target::realpad == 16) ? 'g' : 'e'; break;
case Tbool: c = 'b'; break;
Expand Down

0 comments on commit 491ba86

Please sign in to comment.