Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion interpreter/llvm/llvm-project.tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ROOT-llvm13-20230517-02
ROOT-llvm13-20230623-01
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,13 @@ bool X86MCCodeEmitter::emitPrefixImpl(unsigned &CurOp, const MCInst &MI,
HasREX = emitOpcodePrefix(MemoryOperand, MI, STI, OS);

uint64_t Form = TSFlags & X86II::FormMask;
// FIXME (bellenot): Visual Studio v17.6.0 makes root.exe crash
// at the switch statement with Form being 0x002 or 0x001, values
// normally going to the 'default' switch branch, so the behavior
// doesn't change.
// To be reviewed and removed as soon as VS works again
if (Form <= 0x002)
return HasREX;
switch (Form) {
default:
break;
Expand Down