https://bugs.llvm.org//show_bug.cgi?id=29061
Don't try referencing REX-needed regs when not on 64bit mode
Aligns to GCC
Details
- Reviewers
RKSimon craig.topper
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/Target/X86/X86ISelLowering.cpp | ||
---|---|---|
36825 | Do you need to clear Res if this isn't true like we do in multiple other else cases? |
lib/Target/X86/X86ISelLowering.cpp | ||
---|---|---|
36825 | It leads to in-ability to satisfy input regs: |
test/CodeGen/X86/pr29061.ll | ||
---|---|---|
2 | Expand the triple, otherwise it might cause issues depending on the buildbot: ; RUN: llc < %s -mtriple=i386-unknown-unknown | FileCheck %s You might be able to use utils/update_llc_test_checks.py as well |
Do you need to clear Res if this isn't true like we do in multiple other else cases?