[clang] [llvm] [Clang][inlineasm] Add special support for "rm" output constraints (PR #92040)
Matt Arsenault via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 4 07:40:32 PST 2026
================
@@ -985,6 +985,9 @@ void TargetPassConfig::addISelPrepare() {
if (getOptLevel() != CodeGenOptLevel::None)
addPass(createObjCARCContractPass());
+ if (getOptLevel() == CodeGenOptLevel::None)
----------------
arsenm wrote:
This will be broken for optnone functions with optimizing pipeline
https://github.com/llvm/llvm-project/pull/92040
More information about the cfe-commits
mailing list