[clang] [llvm] [Clang] Add __builtin_assume_dereferenceable to encode deref assumption. (PR #121789)

Erich Keane via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 8 09:13:20 PST 2025


================
@@ -839,6 +839,12 @@ def BuiltinAssumeAligned : Builtin {
   let Prototype = "void*(void const*, size_t, ...)";
 }
 
+def BuiltinAssumeDereferenceable : Builtin {
+  let Spellings = ["__builtin_assume_dereferenceable"];
+  let Attributes = [NoThrow, Const, Constexpr];
----------------
erichkeane wrote:

The constexpr implementation should be pretty easy, since this is effectively a no-op, right? Though perhaps you still have to evaluate the arguments.

https://github.com/llvm/llvm-project/pull/121789


More information about the llvm-commits mailing list