mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
va_end can safely be codegen'd to nothing on v8.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18004 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1344,7 +1344,8 @@ void V8ISel::visitIntrinsicCall(Intrinsic::ID ID, CallInst &CI) {
|
|||||||
std::cerr << "Sorry, va_start intrinsic still unsupported:\n" << CI; abort ();
|
std::cerr << "Sorry, va_start intrinsic still unsupported:\n" << CI; abort ();
|
||||||
|
|
||||||
case Intrinsic::vaend:
|
case Intrinsic::vaend:
|
||||||
std::cerr << "Sorry, va_end intrinsic still unsupported:\n" << CI; abort ();
|
// va_end is a no-op on SparcV8.
|
||||||
|
return;
|
||||||
|
|
||||||
case Intrinsic::vacopy:
|
case Intrinsic::vacopy:
|
||||||
std::cerr << "Sorry, va_copy intrinsic still unsupported:\n" << CI; abort ();
|
std::cerr << "Sorry, va_copy intrinsic still unsupported:\n" << CI; abort ();
|
||||||
|
@ -1344,7 +1344,8 @@ void V8ISel::visitIntrinsicCall(Intrinsic::ID ID, CallInst &CI) {
|
|||||||
std::cerr << "Sorry, va_start intrinsic still unsupported:\n" << CI; abort ();
|
std::cerr << "Sorry, va_start intrinsic still unsupported:\n" << CI; abort ();
|
||||||
|
|
||||||
case Intrinsic::vaend:
|
case Intrinsic::vaend:
|
||||||
std::cerr << "Sorry, va_end intrinsic still unsupported:\n" << CI; abort ();
|
// va_end is a no-op on SparcV8.
|
||||||
|
return;
|
||||||
|
|
||||||
case Intrinsic::vacopy:
|
case Intrinsic::vacopy:
|
||||||
std::cerr << "Sorry, va_copy intrinsic still unsupported:\n" << CI; abort ();
|
std::cerr << "Sorry, va_copy intrinsic still unsupported:\n" << CI; abort ();
|
||||||
|
Reference in New Issue
Block a user