summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-11-20 23:53:26 +0000
committerChris Lattner <sabre@nondot.org>2004-11-20 23:53:26 +0000
commit5f3d274f5ffb6041c852ca3e293b2a99a57bdf56 (patch)
treedeb41c4ded59da4f09b664303a5eaf079bcbbab4 /llvm/lib
parent292bb600530703ecf789ece17a4bae949d36e977 (diff)
downloadbcm5719-llvm-5f3d274f5ffb6041c852ca3e293b2a99a57bdf56.tar.gz
bcm5719-llvm-5f3d274f5ffb6041c852ca3e293b2a99a57bdf56.zip
Adjust to changed interfaces
llvm-svn: 18064
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/MachineCodeEmitter.cpp14
-rw-r--r--llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp4
2 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/MachineCodeEmitter.cpp b/llvm/lib/CodeGen/MachineCodeEmitter.cpp
index fde69697642..c64366cded0 100644
--- a/llvm/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/llvm/lib/CodeGen/MachineCodeEmitter.cpp
@@ -28,11 +28,11 @@ namespace {
void finishFunction(MachineFunction &F) {
std::cout << "\n";
}
- void startFunctionStub(const Function &F, unsigned StubSize) {
- std::cout << "\n--- Function stub for function: " << F.getName() << "\n";
+ void startFunctionStub(unsigned StubSize) {
+ std::cout << "\n--- Function stub:\n";
}
- void *finishFunctionStub(const Function &F) {
- std::cout << "\n";
+ void *finishFunctionStub(const Function *F) {
+ std::cout << "\n--- End of stub for Function\n";
return 0;
}
@@ -105,11 +105,11 @@ namespace {
MCE.emitConstantPool(MCP);
}
- void startFunctionStub(const Function &F, unsigned StubSize) {
- MCE.startFunctionStub(F, StubSize);
+ void startFunctionStub(unsigned StubSize) {
+ MCE.startFunctionStub(StubSize);
}
- void *finishFunctionStub(const Function &F) {
+ void *finishFunctionStub(const Function *F) {
return MCE.finishFunctionStub(F);
}
diff --git a/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
index fd53d576852..fccc3e7cfaa 100644
--- a/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
+++ b/llvm/lib/Target/SparcV9/SparcV9CodeEmitter.cpp
@@ -420,7 +420,7 @@ void JITResolver::CompilationCallback() {
/// directly.
///
uint64_t JITResolver::emitStubForFunction(Function *F) {
- MCE.startFunctionStub(*F, 44);
+ MCE.startFunctionStub(44);
DEBUG(std::cerr << "Emitting stub at addr: 0x"
<< std::hex << MCE.getCurrentPCValue() << "\n");
@@ -461,7 +461,7 @@ uint64_t JITResolver::emitStubForFunction(Function *F) {
}
SparcV9.emitWord(0xDEADBEEF); // marker so that we know it's really a stub
- return (intptr_t)MCE.finishFunctionStub(*F)+4; /* 1 instr past the restore */
+ return (intptr_t)MCE.finishFunctionStub(F)+4; /* 1 instr past the restore */
}
SparcV9CodeEmitter::SparcV9CodeEmitter(TargetMachine &tm,
OpenPOWER on IntegriCloud