Skip to content

Commit 2e10830

Browse files
committed
Fix #5132. Disable use of AVX2 and BMI2 instructions in LLC.
In some basic testing, it looks sufficient to disable AVX2 *or* BMI2 (not required to disable both). Since there are known bugs with these instructions in LLVM3.3, though, disabling both to be safe.
1 parent eca63da commit 2e10830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ $(BUILD)/etc/julia/juliarc.jl: etc/juliarc.jl | $(BUILD)/etc/julia
6868
$(BUILD)/$(JL_PRIVATE_LIBDIR)/sys%ji: $(BUILD)/$(JL_PRIVATE_LIBDIR)/sys%bc
6969

7070
$(BUILD)/$(JL_PRIVATE_LIBDIR)/sys%o: $(BUILD)/$(JL_PRIVATE_LIBDIR)/sys%bc
71-
$(call spawn,$(LLVM_LLC)) -filetype=obj -relocation-model=pic -o $@ $<
71+
$(call spawn,$(LLVM_LLC)) -filetype=obj -relocation-model=pic -mattr=-bmi2,-avx2 -o $@ $<
7272

7373
$(BUILD)/$(JL_PRIVATE_LIBDIR)/sys%$(SHLIB_EXT): $(BUILD)/$(JL_PRIVATE_LIBDIR)/sys%o
7474
$(CXX) -shared -fPIC -L$(BUILD)/$(JL_PRIVATE_LIBDIR) -L$(BUILD)/$(JL_LIBDIR) -o $@ $< \

0 commit comments

Comments
 (0)