This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
yaxunl marked an inline comment as done.
Closed by commit rG8cda128c1eff: [clang]Fix warning for signed conversion on
LP64 (authored by yaxunl).
Herald added a project:
yaxunl marked an inline comment as done.
yaxunl added inline comments.
Comment at: clang/lib/Sema/SemaChecking.cpp:14296
+if (SourceBT && SourceBT->isInteger() && TargetBT &&
+TargetBT->isInteger() &&
MaskRay wrote:
> Consider adding an example when