mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Rename the intrinsic enum values for llvm.va_* from Intrinsic::va_* to
Intrinsic::va*. This avoid conflicting with macros in the stdlib.h file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12356 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -126,13 +126,10 @@ bool InstructionSelection::runOnFunction(Function &F) {
|
||||
if (CallInst *CI = dyn_cast<CallInst>(I++))
|
||||
if (Function *F = CI->getCalledFunction())
|
||||
switch (F->getIntrinsicID()) {
|
||||
#undef va_start
|
||||
#undef va_copy
|
||||
#undef va_end
|
||||
case Intrinsic::not_intrinsic:
|
||||
case Intrinsic::va_start:
|
||||
case Intrinsic::va_copy:
|
||||
case Intrinsic::va_end:
|
||||
case Intrinsic::vastart:
|
||||
case Intrinsic::vacopy:
|
||||
case Intrinsic::vaend:
|
||||
// We directly implement these intrinsics. Note that this knowledge
|
||||
// is incestuously entangled with the code in
|
||||
// SparcInstrSelection.cpp and must be updated when it is updated.
|
||||
|
@@ -1398,7 +1398,7 @@ static bool CodeGenIntrinsic(Intrinsic::ID iid, CallInst &callInstr,
|
||||
switch (iid) {
|
||||
default:
|
||||
assert(0 && "Unknown intrinsic function call should have been lowered!");
|
||||
case Intrinsic::va_start: {
|
||||
case Intrinsic::vastart: {
|
||||
// Get the address of the first incoming vararg argument on the stack
|
||||
bool ignore;
|
||||
Function* func = cast<Function>(callInstr.getParent()->getParent());
|
||||
@@ -1412,10 +1412,10 @@ static bool CodeGenIntrinsic(Intrinsic::ID iid, CallInst &callInstr,
|
||||
return true;
|
||||
}
|
||||
|
||||
case Intrinsic::va_end:
|
||||
case Intrinsic::vaend:
|
||||
return true; // no-op on SparcV9
|
||||
|
||||
case Intrinsic::va_copy:
|
||||
case Intrinsic::vacopy:
|
||||
// Simple copy of current va_list (arg1) to new va_list (result)
|
||||
mvec.push_back(BuildMI(V9::ORr, 3).
|
||||
addMReg(target.getRegInfo().getZeroRegNum()).
|
||||
|
Reference in New Issue
Block a user