From: Chris Lattner Date: Wed, 27 Sep 2006 00:06:07 +0000 (+0000) Subject: Add support for ${:private} which prints "L" on darwin. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bae02cfd46c569bb571a234544fb1bbe19c43b59;p=oota-llvm.git Add support for ${:private} which prints "L" on darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30620 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 518aec3348f..013da748c20 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -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.