mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-16 08:08:01 +00:00
fix a casting problem on the llvm-x86_64-linux tester
llvm-svn: 77295
This commit is contained in:
parent
55461787cc
commit
ec951ca82f
@ -36,7 +36,7 @@ PIC16AsmPrinter::PIC16AsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
|
||||
: AsmPrinter(O, TM, T, V), DbgInfo(O, T) {
|
||||
PTLI = static_cast<const PIC16TargetLowering*>(TM.getTargetLowering());
|
||||
PTAI = static_cast<const PIC16TargetAsmInfo*>(T);
|
||||
PTOF = static_cast<const PIC16TargetObjectFile*>(&PTLI->getObjFileLowering());
|
||||
PTOF = (PIC16TargetObjectFile*)&PTLI->getObjFileLowering();
|
||||
}
|
||||
|
||||
bool PIC16AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
|
||||
|
Loading…
Reference in New Issue
Block a user