diff options
author | Vincent Lejeune <vljn@ovi.com> | 2013-03-05 15:04:42 +0000 |
---|---|---|
committer | Vincent Lejeune <vljn@ovi.com> | 2013-03-05 15:04:42 +0000 |
commit | 64ca84d9b2eac2b0520b0f0fedaac5ef3a41daf6 (patch) | |
tree | 0015cb6077fbba68c4b7528d16ac79c6d9082570 | |
parent | f49cf1c320246d66fbb1d86ad0329259676dba23 (diff) |
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
-rw-r--r-- | lib/Target/R600/R600Instructions.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/R600/R600Instructions.td b/lib/Target/R600/R600Instructions.td index 447ed15e3a..74106c9bd6 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] >; //===----------------------------------------------------------------------===// |