mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-14 15:38:57 +00:00
Jit does not support PIC yet.
llvm-svn: 26278
This commit is contained in:
parent
39356756ac
commit
09bd678546
@ -22,6 +22,7 @@
|
||||
#include "llvm/CodeGen/Passes.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include <iostream>
|
||||
using namespace llvm;
|
||||
|
||||
@ -96,6 +97,7 @@ bool Emitter::runOnMachineFunction(MachineFunction &MF) {
|
||||
}
|
||||
|
||||
void Emitter::emitBasicBlock(const MachineBasicBlock &MBB) {
|
||||
assert(!PICEnabled && "CodeEmitter does not support PIC!");
|
||||
if (uint64_t Addr = MCE.getCurrentPCValue())
|
||||
BasicBlockAddrs[&MBB] = Addr;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user