From 64ca84d9b2eac2b0520b0f0fedaac5ef3a41daf6 Mon Sep 17 00:00:00 2001 From: Vincent Lejeune <vljn@ovi.com> Date: Tue, 5 Mar 2013 15:04:42 +0000 Subject: [PATCH] R600: CONST_ADDRESS node is not marked as mayLoad anymore Reviewed-by: Tom Stellard <thomas.stellard at amd.com> mayLoad complexify scheduling and does not bring any usefull info as the location is not writeable at all. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176486 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/R600/R600Instructions.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/R600/R600Instructions.td b/lib/Target/R600/R600Instructions.td index 447ed15e3ac..74106c9bd63 100644 --- a/lib/Target/R600/R600Instructions.td +++ b/lib/Target/R600/R600Instructions.td @@ -513,7 +513,7 @@ def INTERP_PAIR_ZW : AMDGPUShaderInst < def CONST_ADDRESS: SDNode<"AMDGPUISD::CONST_ADDRESS", SDTypeProfile<1, -1, [SDTCisInt<0>, SDTCisPtrTy<1>]>, - [SDNPMayLoad, SDNPVariadic] + [SDNPVariadic] >; //===----------------------------------------------------------------------===//