diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-05-09 16:42:19 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-05-09 16:42:19 +0000 |
commit | a2acad785a4d6cd7a2bae7d86db360affa2a014d (patch) | |
tree | b8027f39d05e8bc70883c12b0472da86b37ec415 /llvm/lib | |
parent | afa8b532b14cd358b4ef9a2cf2ce95543785ae53 (diff) | |
download | bcm5719-llvm-a2acad785a4d6cd7a2bae7d86db360affa2a014d.tar.gz bcm5719-llvm-a2acad785a4d6cd7a2bae7d86db360affa2a014d.zip |
R600: Expand i64 SELECT_CC
llvm-svn: 208430
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUISelLowering.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUISelLowering.cpp b/llvm/lib/Target/R600/AMDGPUISelLowering.cpp index 2462de6dd38..a17dc181d38 100644 --- a/llvm/lib/Target/R600/AMDGPUISelLowering.cpp +++ b/llvm/lib/Target/R600/AMDGPUISelLowering.cpp @@ -202,6 +202,8 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) : setOperationAction(ISD::BR_CC, MVT::i1, Expand); + setOperationAction(ISD::SELECT_CC, MVT::i64, Expand); + setOperationAction(ISD::FNEG, MVT::v2f32, Expand); setOperationAction(ISD::FNEG, MVT::v4f32, Expand); |