[clang] [clang] Fix sema on ObjCLifetime conversion (PR #178524)

Daniel Rodríguez Troitiño via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 29 10:09:44 PST 2026


================
@@ -5645,14 +5645,22 @@ static void TryReferenceInitializationCore(Sema &S,
     //   applied.
     // Postpone address space conversions to after the temporary materialization
     // conversion to allow creating temporaries in the alloca address space.
-    auto T1QualsIgnoreAS = T1Quals;
-    auto T2QualsIgnoreAS = T2Quals;
+    auto T1QualsIgnoreConvertions = T1Quals;
+    auto T2QualsIgnoreConvertions = T2Quals;
----------------
drodriguez wrote:

Typo? `Convertions` → `Conversion`?

https://github.com/llvm/llvm-project/pull/178524


More information about the cfe-commits mailing list