aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-20 15:17:12 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-20 15:17:12 +0000
commit17b53a8733eeeead983ae181a3e0ac5322a7ca34 (patch)
tree0f9e200c26d084ed51f1e05cc615458c086f4ab9
parent682ce72e60efee791d48ff9fb753064115441ec7 (diff)
downloadexternal_llvm-17b53a8733eeeead983ae181a3e0ac5322a7ca34.zip
external_llvm-17b53a8733eeeead983ae181a3e0ac5322a7ca34.tar.gz
external_llvm-17b53a8733eeeead983ae181a3e0ac5322a7ca34.tar.bz2
Make replaceMachineCodeForFunction() return void.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9289 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/SparcV9/SparcV9Internals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/SparcV9Internals.h b/lib/Target/SparcV9/SparcV9Internals.h
index f394fc0..41a7547 100644
--- a/lib/Target/SparcV9/SparcV9Internals.h
+++ b/lib/Target/SparcV9/SparcV9Internals.h
@@ -677,7 +677,7 @@ public:
virtual bool addPassesToJITCompile(FunctionPassManager &PM);
virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
MachineCodeEmitter &MCE);
- virtual bool replaceMachineCodeForFunction(void *Old, void *New);
+ virtual void replaceMachineCodeForFunction(void *Old, void *New);
// getPrologEpilogInsertionPass - Inserts prolog/epilog code.
FunctionPass* getPrologEpilogInsertionPass();