diff options
author | Aaron Watry <awatry@gmail.com> | 2013-06-25 13:55:23 +0000 |
---|---|---|
committer | Aaron Watry <awatry@gmail.com> | 2013-06-25 13:55:23 +0000 |
commit | e3599ca1915f56ce13139fed58f6daac1cc7ca70 (patch) | |
tree | 1e5a80d4290262b7b36506fbf5903448401983d2 /lib/Target | |
parent | 75b51621540c23ddfc1e9ef6b4dc803453d9d122 (diff) | |
download | external_llvm-e3599ca1915f56ce13139fed58f6daac1cc7ca70.zip external_llvm-e3599ca1915f56ce13139fed58f6daac1cc7ca70.tar.gz external_llvm-e3599ca1915f56ce13139fed58f6daac1cc7ca70.tar.bz2 |
R600/SI: Expand and of v2i32/v4i32 for SI
Also add lit test for both cases on SI, and v2i32 for evergreen.
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/R600/SIISelLowering.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/R600/SIISelLowering.cpp b/lib/Target/R600/SIISelLowering.cpp index 776eb86..bf2e7d3 100644 --- a/lib/Target/R600/SIISelLowering.cpp +++ b/lib/Target/R600/SIISelLowering.cpp @@ -68,6 +68,9 @@ SITargetLowering::SITargetLowering(TargetMachine &TM) : setOperationAction(ISD::ADD, MVT::v4i32, Expand); setOperationAction(ISD::ADD, MVT::v2i32, Expand); + setOperationAction(ISD::AND, MVT::v2i32, Expand); + setOperationAction(ISD::AND, MVT::v4i32, Expand); + setOperationAction(ISD::SUB, MVT::v2i32, Expand); setOperationAction(ISD::SUB, MVT::v4i32, Expand); |