[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineCodeEmitter.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Nov 19 12:56:37 PST 2004
Changes in directory llvm/include/llvm/CodeGen:
MachineCodeEmitter.h updated: 1.19 -> 1.20
---
Log message:
External symbols are const char*'s now, change this to match.
---
Diffs of the changes: (+1 -1)
Index: llvm/include/llvm/CodeGen/MachineCodeEmitter.h
diff -u llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.19 llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.20
--- llvm/include/llvm/CodeGen/MachineCodeEmitter.h:1.19 Wed Oct 27 11:14:51 2004
+++ llvm/include/llvm/CodeGen/MachineCodeEmitter.h Fri Nov 19 14:56:22 2004
@@ -83,7 +83,7 @@
/// handle the situation.
///
virtual uint64_t getGlobalValueAddress(GlobalValue *V) = 0;
- virtual uint64_t getGlobalValueAddress(const std::string &Name) = 0;
+ virtual uint64_t getGlobalValueAddress(const char *SymName) = 0;
// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
// the constant pool that was last emitted with the 'emitConstantPool' method.
More information about the llvm-commits
mailing list