[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPCJITInfo.cpp PPCJITInfo.h
Evan Cheng
evan.cheng at apple.com
Thu Jul 27 10:34:02 PDT 2006
Changes in directory llvm/lib/Target/PowerPC:
PPCJITInfo.cpp updated: 1.25 -> 1.26
PPCJITInfo.h updated: 1.10 -> 1.11
---
Log message:
synchronizeICache removeed from TargetJITInfo.
---
Diffs of the changes: (+0 -11)
PPCJITInfo.cpp | 10 ----------
PPCJITInfo.h | 1 -
2 files changed, 11 deletions(-)
Index: llvm/lib/Target/PowerPC/PPCJITInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.25 llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.26
--- llvm/lib/Target/PowerPC/PPCJITInfo.cpp:1.25 Tue Jul 25 15:40:54 2006
+++ llvm/lib/Target/PowerPC/PPCJITInfo.cpp Thu Jul 27 12:33:48 2006
@@ -268,13 +268,3 @@
}
BBRefs.clear();
}
-
-#ifdef __APPLE__
-extern "C" void sys_icache_invalidate(const void *Addr, size_t len);
-#endif
-
-void PPCJITInfo::synchronizeICache(const void *Addr, size_t Len) {
-#ifdef __APPLE__
- sys_icache_invalidate(Addr, Len);
-#endif
-}
Index: llvm/lib/Target/PowerPC/PPCJITInfo.h
diff -u llvm/lib/Target/PowerPC/PPCJITInfo.h:1.10 llvm/lib/Target/PowerPC/PPCJITInfo.h:1.11
--- llvm/lib/Target/PowerPC/PPCJITInfo.h:1.10 Tue Jul 25 15:40:54 2006
+++ llvm/lib/Target/PowerPC/PPCJITInfo.h Thu Jul 27 12:33:48 2006
@@ -44,7 +44,6 @@
virtual void replaceMachineCodeForFunction(void *Old, void *New);
virtual void resolveBBRefs(MachineCodeEmitter &MCE);
- virtual void synchronizeICache(const void *Addr, size_t Len);
};
}
More information about the llvm-commits
mailing list