From 749655ff8e2ab604760aaacd91062378a36aa0f2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 13 Oct 2001 06:54:30 +0000 Subject: [PATCH] * Add #include * Fix #endif problems * Change to getCalledValue instead of getCalledMethod git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@767 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SparcV9/SparcV9InstrSelection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/SparcV9/SparcV9InstrSelection.cpp b/lib/Target/SparcV9/SparcV9InstrSelection.cpp index 6f8edf57246..891c319c009 100644 --- a/lib/Target/SparcV9/SparcV9InstrSelection.cpp +++ b/lib/Target/SparcV9/SparcV9InstrSelection.cpp @@ -23,7 +23,7 @@ #include "llvm/BasicBlock.h" #include "llvm/Method.h" #include "llvm/ConstPoolVals.h" - +#include //******************** Internal Data Declarations ************************/ @@ -1107,7 +1107,7 @@ CreateLoadConstInstr(const TargetMachine &target, dest); } else -#endif MOVE_INT_TO_FP_REG_AVAILABLE +#endif /*MOVE_INT_TO_FP_REG_AVAILABLE*/ { // Make an instruction sequence to load the constant, viz: @@ -2050,7 +2050,7 @@ GetInstructionsByRule(InstructionNode* subtreeRoot, // any) as implicit operands of the CALL machine instruction. { CallInst *callInstr = cast(subtreeRoot->getInstruction()); - Method* callee = callInstr->getCalledMethod(); + Value *callee = callInstr->getCalledValue(); Instruction* jmpAddrReg = new TmpInstruction(Instruction::UserOp1, callee, NULL);