mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
Reverting 63765. This broke the build of both clang
and llvm-gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63786 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1004,9 +1004,10 @@ void Verifier::VerifyCallSite(CallSite CS) {
|
||||
void Verifier::visitCallInst(CallInst &CI) {
|
||||
VerifyCallSite(&CI);
|
||||
|
||||
if (Function *F = CI.getCalledFunction())
|
||||
if (Function *F = CI.getCalledFunction()) {
|
||||
if (Intrinsic::ID ID = (Intrinsic::ID)F->getIntrinsicID())
|
||||
visitIntrinsicFunctionCall(ID, CI);
|
||||
}
|
||||
}
|
||||
|
||||
void Verifier::visitInvokeInst(InvokeInst &II) {
|
||||
|
Reference in New Issue
Block a user