diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-20 15:17:12 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-20 15:17:12 +0000 |
commit | 17b53a8733eeeead983ae181a3e0ac5322a7ca34 (patch) | |
tree | 0f9e200c26d084ed51f1e05cc615458c086f4ab9 | |
parent | 682ce72e60efee791d48ff9fb753064115441ec7 (diff) | |
download | external_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.h | 2 |
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(); |