diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-08-31 02:53:19 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-08-31 02:53:19 +0000 |
commit | 62cf24343c80e7b59d79d39e8aa50af817a04062 (patch) | |
tree | 542cc97f0d062700ec4fce47749f17cde5cd0719 /llvm/lib/Target/PowerPC | |
parent | 756585963b9285e848e48ea4d9ce5d7c068ff7cf (diff) | |
download | bcm5719-llvm-62cf24343c80e7b59d79d39e8aa50af817a04062.tar.gz bcm5719-llvm-62cf24343c80e7b59d79d39e8aa50af817a04062.zip |
Expand for ROTR with MVT::i64.
Dale, Could you please review this?
llvm-svn: 55581
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index ea8da9dce6f..852d7d347aa 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -125,6 +125,7 @@ PPCTargetLowering::PPCTargetLowering(PPCTargetMachine &TM) // PowerPC does not have ROTR setOperationAction(ISD::ROTR, MVT::i32 , Expand); + setOperationAction(ISD::ROTR, MVT::i64 , Expand); // PowerPC does not have Select setOperationAction(ISD::SELECT, MVT::i32, Expand); |