[llvm] r363591 - AMDGPU: Make getreg intrinsic inaccessiblememonly

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 17 11:17:26 PDT 2019


Author: arsenm
Date: Mon Jun 17 11:17:25 2019
New Revision: 363591

URL: http://llvm.org/viewvc/llvm-project?rev=363591&view=rev
Log:
AMDGPU: Make getreg intrinsic inaccessiblememonly

Modified:
    llvm/trunk/include/llvm/IR/IntrinsicsAMDGPU.td

Modified: llvm/trunk/include/llvm/IR/IntrinsicsAMDGPU.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/IR/IntrinsicsAMDGPU.td?rev=363591&r1=363590&r2=363591&view=diff
==============================================================================
--- llvm/trunk/include/llvm/IR/IntrinsicsAMDGPU.td (original)
+++ llvm/trunk/include/llvm/IR/IntrinsicsAMDGPU.td Mon Jun 17 11:17:25 2019
@@ -1170,7 +1170,7 @@ def int_amdgcn_s_decperflevel :
 def int_amdgcn_s_getreg :
   GCCBuiltin<"__builtin_amdgcn_s_getreg">,
   Intrinsic<[llvm_i32_ty], [llvm_i32_ty],
-  [IntrReadMem, IntrSpeculatable, ImmArg<0>]
+  [IntrInaccessibleMemOnly, IntrReadMem, IntrSpeculatable, ImmArg<0>]
 >;
 
 // int_amdgcn_s_getpc is provided to allow a specific style of position




More information about the llvm-commits mailing list