From: Petar Jovanovic Date: Wed, 24 Jul 2013 13:02:35 +0000 (+0000) Subject: [test commit] Minor comment change. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=959d2f70fb64601a5f73c2ebab1ff2f4ccd9c659;p=oota-llvm.git [test commit] Minor comment change. Testing commit access credentials. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187032 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/MipsJITInfo.cpp b/lib/Target/Mips/MipsJITInfo.cpp index 1b2a325d3ce..d76cb1da2dd 100644 --- a/lib/Target/Mips/MipsJITInfo.cpp +++ b/lib/Target/Mips/MipsJITInfo.cpp @@ -218,9 +218,9 @@ void *MipsJITInfo::emitFunctionStub(const Function *F, void *Fn, Hi++; int Lo = (int)(EmittedAddr & 0xffff); - // lui t9, %hi(EmittedAddr) - // addiu t9, t9, %lo(EmittedAddr) - // jalr t8, t9 + // lui $t9, %hi(EmittedAddr) + // addiu $t9, $t9, %lo(EmittedAddr) + // jalr $t8, $t9 // nop if (IsLittleEndian) { JCE.emitWordLE(0xf << 26 | 25 << 16 | Hi);