summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2014-04-29 23:12:55 +0000
committerTom Stellard <thomas.stellard@amd.com>2014-04-29 23:12:55 +0000
commitc1ff2d3621020082745e05da6d5a992584291279 (patch)
tree6b40f0a54de7017c1b2d86dbf0c363e848fa822b
parent40e455d992c4e95ede50c7de32ac1a312a674276 (diff)
downloadllvm-c1ff2d3621020082745e05da6d5a992584291279.tar.gz
llvm-c1ff2d3621020082745e05da6d5a992584291279.tar.bz2
llvm-c1ff2d3621020082745e05da6d5a992584291279.tar.xz
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> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207592 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/R600/R600ISelLowering.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/R600/R600ISelLowering.cpp b/lib/Target/R600/R600ISelLowering.cpp
index 73109e73ee..c1e12c63ca 100644
--- a/lib/Target/R600/R600ISelLowering.cpp
+++ b/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())