diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2012-12-22 14:58:30 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2012-12-22 14:58:30 +0000 |
| commit | 482e7bddf617ae804dc47133cb07eb4aa81e45de (patch) | |
| tree | c074bb56c422dea536a85cc2d80fd620bb6af08e /lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | |
| parent | 522600a229b950314b5f4af84eba4f3e8a0ffea1 (diff) | |
Notes
Diffstat (limited to 'lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp')
| -rw-r--r-- | lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index b38463de4bfe..68d3ac5f3bd0 100644 --- a/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp @@ -128,6 +128,10 @@ static void printExpr(const MCExpr *Expr, raw_ostream &OS) { case MCSymbolRefExpr::VK_Mips_GOT_OFST: OS << "%got_ofst("; break; case MCSymbolRefExpr::VK_Mips_HIGHER: OS << "%higher("; break; case MCSymbolRefExpr::VK_Mips_HIGHEST: OS << "%highest("; break; + case MCSymbolRefExpr::VK_Mips_GOT_HI16: OS << "%got_hi("; break; + case MCSymbolRefExpr::VK_Mips_GOT_LO16: OS << "%got_lo("; break; + case MCSymbolRefExpr::VK_Mips_CALL_HI16: OS << "%call_hi("; break; + case MCSymbolRefExpr::VK_Mips_CALL_LO16: OS << "%call_lo("; break; } OS << SRE->getSymbol(); |
