diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-02-12 20:42:09 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-02-12 20:42:09 +0000 |
commit | df5cd0868f87e4b7f729c5c2750f99f3e8290f13 (patch) | |
tree | 6d4a7d359d69ba0cbdffe0b8fcc51e25e0c14880 /llvm/lib/Target/Alpha/AlphaISelPattern.cpp | |
parent | e254e2ffcc63fe0e55a5381e56b8508f14a916cc (diff) | |
download | bcm5719-llvm-df5cd0868f87e4b7f729c5c2750f99f3e8290f13.tar.gz bcm5719-llvm-df5cd0868f87e4b7f729c5c2750f99f3e8290f13.zip |
oops, I was sure this had already gond though the nightly tester
llvm-svn: 20141
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaISelPattern.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaISelPattern.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaISelPattern.cpp b/llvm/lib/Target/Alpha/AlphaISelPattern.cpp index 912bb69d1e9..49e9b54e3d8 100644 --- a/llvm/lib/Target/Alpha/AlphaISelPattern.cpp +++ b/llvm/lib/Target/Alpha/AlphaISelPattern.cpp @@ -959,7 +959,7 @@ unsigned ISel::SelectExpr(SDOperand N) { case MVT::i1: Tmp2 = MakeReg(MVT::i64); BuildMI(BB, Alpha::ANDi, 2, Tmp2).addReg(Tmp1).addImm(1); - BuildMI(BB, Alpha::SUB, 2, Result).addReg(Alpha::F31).addReg(Tmp2); + BuildMI(BB, Alpha::SUBQ, 2, Result).addReg(Alpha::F31).addReg(Tmp2); break; } return Result; |