[llvm] [ms] [llvm-ml] Implement support for PROC NEAR/FAR (PR #131707)
Eric Astor via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 06:31:51 PDT 2025
================
@@ -97,9 +97,13 @@ class MCContext {
IsDXContainer
};
+ enum DefaultRetType { IsNear, IsFar };
----------------
ericastor wrote:
I was debating exactly this choice. I think it's already relatively simple to check `isParsingMasm()` and then cast the parser object back to `MasmParser` if you need to ask specific questions of it.
However, the Context object seemed a natural place to store stateful context affecting the meaning of potentially-ambiguous mnemonics. I take it you think this is a bit too MASM-specific, and that no other MC should expect to have to make this differentiation contextually?
https://github.com/llvm/llvm-project/pull/131707
More information about the llvm-commits
mailing list