diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-06-20 21:55:30 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-06-20 21:55:30 +0000 |
commit | fe91c515d788c4e07413704bcdaaa7de84e77be8 (patch) | |
tree | b9e79b320c4dca4c9c3baebd56fe5815ea412328 /lib/Target/R600 | |
parent | eb3aa070c9b3984c375ef65ef6e5f113efd7e968 (diff) | |
download | external_llvm-fe91c515d788c4e07413704bcdaaa7de84e77be8.zip external_llvm-fe91c515d788c4e07413704bcdaaa7de84e77be8.tar.gz external_llvm-fe91c515d788c4e07413704bcdaaa7de84e77be8.tar.bz2 |
R600/SI: Expand add for v2i32 and v4i32
Also add SI tests to existing file and a v2i32 test for both
R600 and SI.
Patch by: Aaron Watry
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
Signed-off-by: Aaron Watry <awatry@gmail.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600')
-rw-r--r-- | lib/Target/R600/SIISelLowering.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/R600/SIISelLowering.cpp b/lib/Target/R600/SIISelLowering.cpp index d74f401..bf4918a 100644 --- a/lib/Target/R600/SIISelLowering.cpp +++ b/lib/Target/R600/SIISelLowering.cpp @@ -65,6 +65,8 @@ SITargetLowering::SITargetLowering(TargetMachine &TM) : setOperationAction(ISD::ADD, MVT::i64, Legal); setOperationAction(ISD::ADD, MVT::i32, Legal); + setOperationAction(ISD::ADD, MVT::v4i32, Expand); + setOperationAction(ISD::ADD, MVT::v2i32, Expand); setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); |