va_end can safely be codegen'd to nothing on v8.

llvm-svn: 18004
This commit is contained in:
Brian Gaeke 2004-11-19 19:21:34 +00:00
parent 201535d102
commit 8bb29bf3f6
1 changed files with 2 additions and 1 deletions

View File

@ -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 ();