summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineCodeEmitter.h
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-04-22 23:52:35 +0000
committerNate Begeman <natebegeman@mac.com>2006-04-22 23:52:35 +0000
commit3700a4d3a27ca8d39c73049020623cf4963d6c13 (patch)
treed4c908c2c36e4e9baf8eeebdc04cc08a704b6ce0 /include/llvm/CodeGen/MachineCodeEmitter.h
parent05f9466cf0f4f47803af7283f7708cb25f4da889 (diff)
downloadllvm-3700a4d3a27ca8d39c73049020623cf4963d6c13.tar.gz
llvm-3700a4d3a27ca8d39c73049020623cf4963d6c13.tar.bz2
llvm-3700a4d3a27ca8d39c73049020623cf4963d6c13.tar.xz
Code cleanup associated with jump tables, thanks to Chris for noticing
these. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineCodeEmitter.h')
-rw-r--r--include/llvm/CodeGen/MachineCodeEmitter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/MachineCodeEmitter.h b/include/llvm/CodeGen/MachineCodeEmitter.h
index f4b7c2290d..eba7bae8ac 100644
--- a/include/llvm/CodeGen/MachineCodeEmitter.h
+++ b/include/llvm/CodeGen/MachineCodeEmitter.h
@@ -102,14 +102,14 @@ public:
/// noted with this interface.
virtual void addRelocation(const MachineRelocation &MR) = 0;
- // getConstantPoolEntryAddress - Return the address of the 'Index' entry in
- // the constant pool that was last emitted with the 'emitConstantPool' method.
- //
+ /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
+ /// the constant pool that was last emitted with the emitConstantPool method.
+ ///
virtual uint64_t getConstantPoolEntryAddress(unsigned Index) = 0;
- // getJumpTablelEntryAddress - Return the address of the jump table with index
- // 'Index' in the function that last called initJumpTableInfo.
- //
+ /// getJumpTableEntryAddress - Return the address of the jump table with index
+ /// 'Index' in the function that last called initJumpTableInfo.
+ ///
virtual uint64_t getJumpTableEntryAddress(unsigned Index) = 0;
// allocateGlobal - Allocate some space for a global variable.