aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86ELFWriter.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-07-25 20:40:54 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-07-25 20:40:54 +0000
commit55fc28076fa48723bd170e51638b3b5974ca0fa1 (patch)
tree954eb5ec8c5be4c9a3b5cb6c6cbe7f6398564370 /lib/Target/X86/X86ELFWriter.cpp
parent55371739dec0ade6fcc77de228fb3e4d098845f7 (diff)
- Refactor the code that resolve basic block references to a TargetJITInfo
method. - Added synchronizeICache() to TargetJITInfo. It is called after each block of code is emitted to flush the icache. This ensures correct execution on targets that have separate dcache and icache. - Added PPC / Mac OS X specific code to do icache flushing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29276 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86ELFWriter.cpp')
-rw-r--r--lib/Target/X86/X86ELFWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ELFWriter.cpp b/lib/Target/X86/X86ELFWriter.cpp
index 0a3a027f1d..46c4642030 100644
--- a/lib/Target/X86/X86ELFWriter.cpp
+++ b/lib/Target/X86/X86ELFWriter.cpp
@@ -35,5 +35,5 @@ void llvm::addX86ELFObjectWriterPass(PassManager &FPM,
std::ostream &O, X86TargetMachine &TM) {
X86ELFWriter *EW = new X86ELFWriter(O, TM);
FPM.add(EW);
- FPM.add(createX86CodeEmitterPass(EW->getMachineCodeEmitter()));
+ FPM.add(createX86CodeEmitterPass(TM, EW->getMachineCodeEmitter()));
}