[test commit] Minor comment change.
authorPetar Jovanovic <petar.jovanovic@imgtec.com>
Wed, 24 Jul 2013 13:02:35 +0000 (13:02 +0000)
committerPetar Jovanovic <petar.jovanovic@imgtec.com>
Wed, 24 Jul 2013 13:02:35 +0000 (13:02 +0000)
Testing commit access credentials.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187032 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Mips/MipsJITInfo.cpp

index 1b2a325d3ce67400d18daee7ad2b91dcc5ea50a1..d76cb1da2ddcb03501aa9f22f7497499a3e2b1bd 100644 (file)
@@ -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);