hfinkel added inline comments.

================
Comment at: ReleaseNotes.rst:82
+- ``-Wnull-pointer-arithmetic`` now warns about performing pointer arithmetic
+  on a null pointer. It has an undefined behavior if the offset is nonzero.
+
----------------
We can probably just make this one entry:

  ``-Wnull-pointer-arithmetic`` now warns about performing pointer arithmetic 
on a null pointer. Such pointer arithmetic has an undefined behavior if the 
offset is nonzero. It also now warns about arithmetic on a null pointer treated 
as a cast from integer to pointer (GNU extension).



https://reviews.llvm.org/D38186



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

Reply via email to