Skip to content

Commit 2826972

Browse files
authored
Add 64 abi without underscore (rust-lang#895)
1 parent b359e2c commit 2826972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enzyme/BCLoad/BCLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bool provideDefinitions(Module &M) {
2525
if (!F.empty())
2626
continue;
2727
int index = 0;
28-
for (auto postfix : {"", "_", "_64_"}) {
28+
for (auto postfix : {"", "_", "_64_", "64_"}) {
2929
std::string str;
3030
if (strlen(postfix) == 0)
3131
str = F.getName().str();

0 commit comments

Comments
 (0)