Make replaceMachineCodeForFunction return void.
authorBrian Gaeke <gaeke@uiuc.edu>
Mon, 20 Oct 2003 15:14:33 +0000 (15:14 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Mon, 20 Oct 2003 15:14:33 +0000 (15:14 +0000)
Make it assert by default.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9287 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetMachine.h

index e8380f372d15bd23af532b6b4db72205caa4706f..a40f7a1bd547cf5d528e29b154183eff76d05660 100644 (file)
@@ -8,6 +8,7 @@
 #define LLVM_TARGET_TARGETMACHINE_H
 
 #include "llvm/Target/TargetData.h"
+#include <cassert>
 
 class TargetInstrInfo;
 class TargetInstrDescriptor;
@@ -100,11 +101,12 @@ public:
   }
 
   /// replaceMachineCodeForFunction - Make it so that calling the
-  /// function whose machine code is at OLD turns into a call to NEW. Returns
-  /// true iff an error occurred. FIXME: this is JIT-specific.
+  /// function whose machine code is at OLD turns into a call to NEW,
+  /// perhaps by overwriting OLD with a branch to NEW. FIXME: this is
+  /// JIT-specific.
   ///
-  virtual bool replaceMachineCodeForFunction (void *Old, void *New) {
-    return true;
+  virtual void replaceMachineCodeForFunction (void *Old, void *New) {
+    assert (0 && "Current target cannot replace machine code for functions");
   }
 };