[llvm-commits] CVS: llvm/lib/CodeGen/MachineCodeEmitter.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Nov 19 12:56:59 PST 2004



Changes in directory llvm/lib/CodeGen:

MachineCodeEmitter.cpp updated: 1.17 -> 1.18
---
Log message:

Match change in MachineCodeEmitter prototype.



---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/CodeGen/MachineCodeEmitter.cpp
diff -u llvm/lib/CodeGen/MachineCodeEmitter.cpp:1.17 llvm/lib/CodeGen/MachineCodeEmitter.cpp:1.18
--- llvm/lib/CodeGen/MachineCodeEmitter.cpp:1.17	Sun Jul  4 07:19:55 2004
+++ llvm/lib/CodeGen/MachineCodeEmitter.cpp	Fri Nov 19 14:56:46 2004
@@ -48,7 +48,7 @@
     }
 
     uint64_t getGlobalValueAddress(GlobalValue *V) { return 0; }
-    uint64_t getGlobalValueAddress(const std::string &Name) { return 0; }
+    uint64_t getGlobalValueAddress(const char *Name) { return 0; }
     uint64_t getConstantPoolEntryAddress(unsigned Num) { return 0; }
     uint64_t getCurrentPCValue() { return 0; }
 
@@ -148,7 +148,7 @@
     uint64_t getGlobalValueAddress(GlobalValue *V) {
       return MCE.getGlobalValueAddress(V);
     }
-    uint64_t getGlobalValueAddress(const std::string &Name) {
+    uint64_t getGlobalValueAddress(const char *Name) {
       return MCE.getGlobalValueAddress(Name);
     }
     uint64_t getConstantPoolEntryAddress(unsigned Num) {






More information about the llvm-commits mailing list