rjmccall added inline comments.

================
Comment at: clang/lib/Sema/SemaExpr.cpp:2721
+      From = ImpCastExprToType(From, DestASTy, CK_AddressSpaceConversion,
+                               From->getValueKind()).get();
+    }
----------------
Both the source and dest types here are off by a level if we're working with a 
pointer; you need to do:

```
  auto FromRecordTypeWithoutAS = 
Context.removeAddrSpaceQualType(FromRecordType);
  auto FromTypeWithDestAS = 
Context.getAddrSpaceQualType(FromRecordTypeWithoutAS, DestAS);
  if (PointerConversions)
   FromTypeWithDestAS = Context.getPointerType(FromTypeWithDestAS);
```


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D69810/new/

https://reviews.llvm.org/D69810



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to