mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
remove some extraneous quotes to make the new instprinter match.
llvm-svn: 119104
This commit is contained in:
parent
11e50c531a
commit
7743db8f20
@ -254,7 +254,7 @@ namespace {
|
||||
if (Subtarget.isDarwin()) O << "ha16(";
|
||||
printOp(MI->getOperand(OpNo), O);
|
||||
if (TM.getRelocationModel() == Reloc::PIC_)
|
||||
O << "-\"L" << getFunctionNumber() << "$pb\"";
|
||||
O << "-L" << getFunctionNumber() << "$pb";
|
||||
if (Subtarget.isDarwin())
|
||||
O << ')';
|
||||
else
|
||||
@ -268,7 +268,7 @@ namespace {
|
||||
if (Subtarget.isDarwin()) O << "lo16(";
|
||||
printOp(MI->getOperand(OpNo), O);
|
||||
if (TM.getRelocationModel() == Reloc::PIC_)
|
||||
O << "-\"L" << getFunctionNumber() << "$pb\"";
|
||||
O << "-L" << getFunctionNumber() << "$pb";
|
||||
if (Subtarget.isDarwin())
|
||||
O << ')';
|
||||
else
|
||||
|
@ -43,8 +43,8 @@ L2: ; preds = %L3, %bb2
|
||||
|
||||
L1: ; preds = %L2, %bb2
|
||||
%res.3 = phi i32 [ %phitmp, %L2 ], [ 2, %bb2 ] ; <i32> [#uses=1]
|
||||
; PIC: addis r4, r4, ha16(Ltmp0-"L0$pb")
|
||||
; PIC: li r6, lo16(Ltmp0-"L0$pb")
|
||||
; PIC: addis r4, r4, ha16(Ltmp0-L0$pb)
|
||||
; PIC: li r6, lo16(Ltmp0-L0$pb)
|
||||
; PIC: add r4, r4, r6
|
||||
; PIC: stw r4
|
||||
; STATIC: li r5, lo16(Ltmp0)
|
||||
|
Loading…
Reference in New Issue
Block a user