Skip to content

Commit

Permalink
remove modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-fink committed May 8, 2024
1 parent 05517ce commit f462f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/WebAssembly/WebAssemblyPointerAuth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ void WebAssemblyPointerAuth::visitCallBase(llvm::CallBase &CB) {
Intrinsic::getDeclaration(CB.getModule(), Intrinsic::wasm_pointer_auth);
IRBuilder<> IRB(&CB);
auto *AuthCallee =
IRB.CreateCall(PointerAuthIntr, {Op, IRB.getInt64(0)});
IRB.CreateCall(PointerAuthIntr, {Op});
CB.setCalledOperand(AuthCallee);
}

Expand Down

0 comments on commit f462f3f

Please sign in to comment.