[PATCH] D88772: [X86] .code16: temporarily set Mode32Bit when matching an instruction with the data32 prefix
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 5 17:11:07 PDT 2020
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp:3092
+ // TODO Generalize.
+ if (Next == "callw")
+ Next = "calll";
----------------
So unlike the previous code we're allowing plain "call" to be selected based on the forced mode?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88772/new/
https://reviews.llvm.org/D88772
More information about the llvm-commits
mailing list