Add support for ${:private} which prints "L" on darwin.

llvm-svn: 30620
This commit is contained in:
Chris Lattner 2006-09-27 00:06:07 +00:00
parent a32814b033
commit 30b4708df2
1 changed files with 3 additions and 1 deletions

View File

@ -626,7 +626,9 @@ AsmPrinter::EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) {
/// syntax used is ${:comment}. Targets can override this to add support
/// for their own strange codes.
void AsmPrinter::PrintSpecial(const MachineInstr *MI, const char *Code) {
if (!strcmp(Code, "comment")) {
if (!strcmp(Code, "private")) {
O << TAI->getPrivateGlobalPrefix();
} else if (!strcmp(Code, "comment")) {
O << TAI->getCommentString();
} else if (!strcmp(Code, "uid")) {
// Assign a unique ID to this machine instruction.