summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCJITInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-06-25 17:18:44 +0000
committerChris Lattner <sabre@nondot.org>2008-06-25 17:18:44 +0000
commitbc52cada0933f353d30da7b49af9a641bdb2c57d (patch)
treea5f90f85923b79c2cc7a3690f010221c7cbbd2c1 /lib/Target/PowerPC/PPCJITInfo.h
parent95f39009aaeb4614f3eeab3864ae1a31289f1a30 (diff)
downloadllvm-bc52cada0933f353d30da7b49af9a641bdb2c57d.tar.gz
llvm-bc52cada0933f353d30da7b49af9a641bdb2c57d.tar.bz2
llvm-bc52cada0933f353d30da7b49af9a641bdb2c57d.tar.xz
Switch the PPC backend and target-independent JIT to use the libsystem
InvalidateInstructionCache method instead of calling through a hook on the JIT. This is a host feature, not a target feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCJITInfo.h')
-rw-r--r--lib/Target/PowerPC/PPCJITInfo.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/PowerPC/PPCJITInfo.h b/lib/Target/PowerPC/PPCJITInfo.h
index b7e6ff56ab..c93a84aca0 100644
--- a/lib/Target/PowerPC/PPCJITInfo.h
+++ b/lib/Target/PowerPC/PPCJITInfo.h
@@ -41,11 +41,6 @@ namespace llvm {
/// code.
///
virtual void replaceMachineCodeForFunction(void *Old, void *New);
-
- /// InvalidateInstructionCache - Before the JIT can run a block of code
- // that has been emitted it must invalidate the instruction cache on some
- // platforms.
- virtual void InvalidateInstructionCache(const void *Addr, unsigned len);
};
}