diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-01-08 15:08:17 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-01-08 15:08:17 +0000 |
commit | 654d669e564250d8edecc07ca8b6c875dcaf8ff7 (patch) | |
tree | 711a60dd5b5acb7bb074bc81fd5081ed6460ab28 /llvm/test/CodeGen/R600/setuo.ll | |
parent | d05d3a89191cb088d7f5aa03651b65d60b1e525d (diff) | |
download | bcm5719-llvm-654d669e564250d8edecc07ca8b6c875dcaf8ff7.tar.gz bcm5719-llvm-654d669e564250d8edecc07ca8b6c875dcaf8ff7.zip |
R600/SI: Remove SIISelLowering::legalizeOperands()
Its functionality has been replaced by calling
SIInstrInfo::legalizeOperands() from
SIISelLowering::AdjstInstrPostInstrSelection() and running the
SIFoldOperands and SIShrinkInstructions passes.
llvm-svn: 225445
Diffstat (limited to 'llvm/test/CodeGen/R600/setuo.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/setuo.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/R600/setuo.ll b/llvm/test/CodeGen/R600/setuo.ll index c13c7dcb19a..f2113096e3a 100644 --- a/llvm/test/CodeGen/R600/setuo.ll +++ b/llvm/test/CodeGen/R600/setuo.ll @@ -2,7 +2,7 @@ ; CHECK-LABEL: {{^}}main: ; CHECK: v_cmp_u_f32_e64 [[CMP:s\[[0-9]+:[0-9]+\]]], [[SREG:s[0-9]+]], [[SREG]] -; CHECK-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0.0, 1.0, [[CMP]] +; CHECK-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, 1.0, [[CMP]] define void @main(float %p) { main_body: %c = fcmp une float %p, %p |