mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-07 11:59:09 +00:00
va_end can safely be codegen'd to nothing on v8.
llvm-svn: 18004
This commit is contained in:
parent
7027432624
commit
9c9427b62b
@ -1344,7 +1344,8 @@ void V8ISel::visitIntrinsicCall(Intrinsic::ID ID, CallInst &CI) {
|
||||
std::cerr << "Sorry, va_start intrinsic still unsupported:\n" << CI; abort ();
|
||||
|
||||
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:
|
||||
std::cerr << "Sorry, va_copy intrinsic still unsupported:\n" << CI; abort ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user