diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-04-29 23:12:55 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-04-29 23:12:55 +0000 |
commit | 93f9f4950c62f7038310fe1712eabee547985f4d (patch) | |
tree | 05dee11dda9c2080d1875cb91c03ec1bf446b54f /llvm/lib | |
parent | 919bb6b83fde6117b430dcb7b3ecfe9fea3d7fe9 (diff) | |
download | bcm5719-llvm-93f9f4950c62f7038310fe1712eabee547985f4d.tar.gz bcm5719-llvm-93f9f4950c62f7038310fe1712eabee547985f4d.zip |
R600: Remove duplicate setting of SELECT expansion.
It's already set in AMDGPUISelLowering for all GPUs
Patch By: Jan Vesely
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
llvm-svn: 207592
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/R600/R600ISelLowering.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Target/R600/R600ISelLowering.cpp b/llvm/lib/Target/R600/R600ISelLowering.cpp index 73109e73ee0..c1e12c63ca1 100644 --- a/llvm/lib/Target/R600/R600ISelLowering.cpp +++ b/llvm/lib/Target/R600/R600ISelLowering.cpp @@ -82,9 +82,7 @@ R600TargetLowering::R600TargetLowering(TargetMachine &TM) : setOperationAction(ISD::SELECT, MVT::i32, Expand); setOperationAction(ISD::SELECT, MVT::f32, Expand); setOperationAction(ISD::SELECT, MVT::v2i32, Expand); - setOperationAction(ISD::SELECT, MVT::v2f32, Expand); setOperationAction(ISD::SELECT, MVT::v4i32, Expand); - setOperationAction(ISD::SELECT, MVT::v4f32, Expand); // Expand sign extension of vectors if (!Subtarget->hasBFE()) |