1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix a typo in a comment, and zap a blank line.

llvm-svn: 9184
This commit is contained in:
Brian Gaeke 2003-10-16 23:33:38 +00:00
parent 54c766e934
commit 9b4da738dd

View File

@ -116,7 +116,7 @@ void JITMemoryManager::endFunctionBody(unsigned char *FunctionEnd) {
namespace {
/// Emitter - The JIT implementation of the MachineCodeEmiter, which is used
/// Emitter - The JIT implementation of the MachineCodeEmitter, which is used
/// to output functions to memory for execution.
class Emitter : public MachineCodeEmitter {
JITMemoryManager MemMgr;
@ -215,7 +215,6 @@ void Emitter::emitWord(unsigned W) {
CurByte += sizeof(unsigned);
}
uint64_t Emitter::getGlobalValueAddress(GlobalValue *V) {
// Try looking up the function to see if it is already compiled, if not return
// 0.