diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-04 12:43:56 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-04 12:43:56 +0000 |
commit | 837be1ec35bd4e12f44f60b9ffcb4b98ef292e17 (patch) | |
tree | b2f9a84845879143bb3d9c7964f6a02f04be0e71 /lib/Transforms | |
parent | c84492c2dbfa69d0f0dbc0a12d61374ead2c26fc (diff) |
hack to fix bzip2 (bug 571)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 218910feb2..53ee6ca01f 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -3088,6 +3088,8 @@ Instruction *InstCombiner::visitSetCondInstWithCastAndCast(SetCondInst &SCI) { return 0; } + return 0; //The rest of this function is broken. See bug 571 + // Okay, we have the two reduced sized operands. If we are doing a <,> // comparison, make sure we perform the compare with the same signedness as // the DestTy. We don't have to do this if the comparison is !=/== or if the |