[PATCH] D58729: Emit boxed expression as a compile-time constant if the expression inside the parentheses is a string literal
John McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Mar 7 17:47:55 PST 2019
rjmccall added inline comments.
================
Comment at: include/clang/Basic/DiagnosticGroups.td:407
def ObjCFlexibleArray : DiagGroup<"objc-flexible-array">;
+def ObjCBoxing : DiagGroup<"objc-boxing">;
def OpenCLUnsupportedRGBA: DiagGroup<"opencl-unsupported-rgba">;
----------------
Sure. If we decide to add more things to this warning group, we can pull this one out into a sub-group with a more targeted name.
================
Comment at: include/clang/Basic/DiagnosticSemaKinds.td:922
+def warn_objc_boxing_invalid_utf8_string : Warning<
+ "string is ill-formed as UTF-8 and will become a null NSString* when boxed">,
+ InGroup<ObjCBoxing>;
----------------
Might as well use the `NSStringPointer` type we stash on Sema so that this will be the right type even in more obscure environments.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58729/new/
https://reviews.llvm.org/D58729
More information about the cfe-commits
mailing list