================
@@ -3134,117 +3129,163 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
 
     if (isa<MSAsmStmt>(&S)) {
       if (Clobber == "eax" || Clobber == "edx") {
-        if (Constraints.find("=&A") != std::string::npos)
+        if (AsmInfo.Constraints.find("=&A") != std::string::npos)
----------------
s-barannikov wrote:

The diff could be somewhat smaller with `const T& Constraints = 
AsmInfo.Constraints` at the beginning of the function

https://github.com/llvm/llvm-project/pull/196885
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to