aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/CodeGen/MachineCodeEmitter.h4
-rw-r--r--lib/CodeGen/MachineCodeEmitter.cpp5
2 files changed, 5 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/MachineCodeEmitter.h b/include/llvm/CodeGen/MachineCodeEmitter.h
index d3e2414f15..5c4802eacd 100644
--- a/include/llvm/CodeGen/MachineCodeEmitter.h
+++ b/include/llvm/CodeGen/MachineCodeEmitter.h
@@ -45,12 +45,12 @@ struct MachineCodeEmitter {
/// specifies the total size required by the stub. Stubs are not allowed to
/// have constant pools, the can only use the other emit* methods.
///
- virtual void startFunctionStub(Function &F, unsigned StubSize) {}
+ virtual void startFunctionStub(const Function &F, unsigned StubSize) {}
/// finishFunctionStub - This callback is invoked to terminate a function
/// stub.
///
- virtual void finishFunctionStub(Function &F) {}
+ virtual void *finishFunctionStub(const Function &F) { return 0; }
/// emitByte - This callback is invoked when a byte needs to be written to the
/// output stream.
diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp
index 270a7b9038..d91efe2cc1 100644
--- a/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/lib/CodeGen/MachineCodeEmitter.cpp
@@ -22,11 +22,12 @@ namespace {
std::cout << "\n--- Basic Block: " << BB.getBasicBlock()->getName()<<"\n";
}
- void startFunctionStub(Function &F, unsigned StubSize) {
+ void startFunctionStub(const Function &F, unsigned StubSize) {
std::cout << "\n--- Function stub for function: " << F.getName() << "\n";
}
- void finishFunctionStub(Function &F) {
+ void *finishFunctionStub(const Function &F) {
std::cout << "\n";
+ return 0;
}
void emitByte(unsigned char B) {