From 2e159ced357d70f9d7a6d4b12c412c0b3ef320f6 Mon Sep 17 00:00:00 2001 From: Daniel Thornburgh Date: Thu, 6 Nov 2025 09:02:40 -0800 Subject: [PATCH] Add @llvm.reloc.none intrinsic to LLVM release notes This declares PR #147427. --- llvm/docs/ReleaseNotes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/docs/ReleaseNotes.md b/llvm/docs/ReleaseNotes.md index bfe68274eae3f..23bba99ec874f 100644 --- a/llvm/docs/ReleaseNotes.md +++ b/llvm/docs/ReleaseNotes.md @@ -67,6 +67,9 @@ Changes to the LLVM IR Instead, the `align` attribute should be placed on the pointer (or vector of pointers) argument. * A `load atomic` may now be used with vector types on x86. +* Added `@llvm.reloc.none` intrinsic to emit null relocations to symbols. This + emits an undefined symbol reference without adding any dedicated code or data to + to bear the relocation. Changes to LLVM infrastructure ------------------------------