[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed May 3 17:50:13 PDT 2006



Changes in directory llvm/lib/Target/Alpha:

AlphaAsmPrinter.cpp updated: 1.37 -> 1.38
---
Log message:

Remove some more V9-specific stuff.


---
Diffs of the changes:  (+1 -6)

 AlphaAsmPrinter.cpp |    7 +------
 1 files changed, 1 insertion(+), 6 deletions(-)


Index: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp
diff -u llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.37 llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.38
--- llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.37	Wed May  3 19:44:25 2006
+++ llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp	Wed May  3 19:49:59 2006
@@ -123,12 +123,7 @@
     return;
 
   case MachineOperand::MO_GlobalAddress:
-    //Abuse PCrel to specify pcrel calls
-    //calls are the only thing that use this flag
-//     if (MO.isPCRelative())
-//       O << PrivateGlobalPrefix << Mang->getValueName(MO.getGlobal()) << "..ng";
-//     else
-      O << Mang->getValueName(MO.getGlobal());
+    O << Mang->getValueName(MO.getGlobal());
     return;
 
   default:






More information about the llvm-commits mailing list