mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 21:18:19 +00:00
This patch implements the thread local storage. Implemented are General
Dynamic, Initial Exec and Local Exec TLS models. Patch by Sasa Stankovic git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132322 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -318,6 +318,10 @@ void MipsAsmPrinter::printOperand(const MachineInstr *MI, int opNum,
|
||||
case MipsII::MO_GOT: O << "%got("; break;
|
||||
case MipsII::MO_ABS_HI: O << "%hi("; break;
|
||||
case MipsII::MO_ABS_LO: O << "%lo("; break;
|
||||
case MipsII::MO_TLSGD: O << "%tlsgd("; break;
|
||||
case MipsII::MO_GOTTPREL: O << "%gottprel("; break;
|
||||
case MipsII::MO_TPREL_HI: O << "%tprel_hi("; break;
|
||||
case MipsII::MO_TPREL_LO: O << "%tprel_lo("; break;
|
||||
}
|
||||
|
||||
switch (MO.getType()) {
|
||||
|
||||
Reference in New Issue
Block a user