Skip to content

Commit

Permalink
Add patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik authored Sep 30, 2024
1 parent 6792ec7 commit 87dd7b6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions julia-patches/1b7b3b8d354a28f5fb1381c61c5663819d29a974
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/ccall.cpp b/src/ccall.cpp
index 2de5be6906..f23eff7771 100644
--- a/src/ccall.cpp
+++ b/src/ccall.cpp
@@ -2122,7 +2122,7 @@ jl_cgval_t function_sig_t::emit_a_ccall(
}
else if (f_name.starts_with("llvm.")) {
// compute and verify auto-mangling for intrinsic name
- auto ID = Function::lookupIntrinsicID(f_name);
+ auto ID = Intrinsic::lookupIntrinsicID(f_name);
if (ID != Intrinsic::not_intrinsic) {
// Accumulate an array of overloaded types for the given intrinsic
// and compute the new name mangling schema

0 comments on commit 87dd7b6

Please sign in to comment.