Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: lib/Transforms/NaCl/ReplacePtrsWithInts.cpp

Issue 1042643002: PNaCl: Strip `nonnull` attributes from pointer arguments. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/Transforms/NaCl/replace-ptrs-with-ints.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/Transforms/NaCl/ReplacePtrsWithInts.cpp
diff --git a/lib/Transforms/NaCl/ReplacePtrsWithInts.cpp b/lib/Transforms/NaCl/ReplacePtrsWithInts.cpp
index d1d2d179365dcb86138f0a52ee001a07800746ad..88bc10e1df9f8ce85e1433a5b257747e6c1efaac 100644
--- a/lib/Transforms/NaCl/ReplacePtrsWithInts.cpp
+++ b/lib/Transforms/NaCl/ReplacePtrsWithInts.cpp
@@ -331,6 +331,7 @@ static AttributeSet RemovePointerAttrs(LLVMContext &Context,
case Attribute::NoAlias:
case Attribute::ReadNone:
case Attribute::ReadOnly:
+ case Attribute::NonNull:
break;
default:
AB.addAttribute(*Attr);
« no previous file with comments | « no previous file | test/Transforms/NaCl/replace-ptrs-with-ints.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698