mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
* 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
This commit is contained in:
parent
d215fd1f56
commit
749655ff8e
@ -23,7 +23,7 @@
|
||||
#include "llvm/BasicBlock.h"
|
||||
#include "llvm/Method.h"
|
||||
#include "llvm/ConstPoolVals.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
//******************** 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<CallInst>(subtreeRoot->getInstruction());
|
||||
Method* callee = callInstr->getCalledMethod();
|
||||
Value *callee = callInstr->getCalledValue();
|
||||
|
||||
Instruction* jmpAddrReg = new TmpInstruction(Instruction::UserOp1,
|
||||
callee, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user