Skip to content

Commit 8d4f6d2

Browse files
authored
Merge pull request #32447 from JuliaLang/jn/llvm8
build fix [NFC]
2 parents 7699238 + 032ec82 commit 8d4f6d2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Make.inc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,8 +1103,6 @@ OSLIBS += -Wl,--export-dynamic -Wl,--version-script=$(JULIAHOME)/src/julia.expma
11031103
endif
11041104

11051105
ifeq ($(OS), Darwin)
1106-
INSTALL_NAME_CMD := install_name_tool -id $(INSTALL_NAME_ID_DIR)
1107-
INSTALL_NAME_CHANGE_CMD := install_name_tool -change
11081106
SHLIB_EXT := dylib
11091107
OSLIBS += -framework CoreFoundation $(LIBUNWIND)
11101108
WHOLE_ARCHIVE := -Xlinker -all_load

src/llvm-late-gc-lowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1682,7 +1682,7 @@ MDNode *createMutableTBAAAccessTag(MDNode *Tag) {
16821682
}
16831683
#else
16841684
MDNode *createMutableTBAAAccessTag(MDNode *Tag) {
1685-
return MDBuilder(Tag->getContext()).createMutableTBAAAccessTag(TBAA);
1685+
return MDBuilder(Tag->getContext()).createMutableTBAAAccessTag(Tag);
16861686
}
16871687
#endif
16881688

0 commit comments

Comments
 (0)