diff options
| author | Chris Lattner <sabre@nondot.org> | 2008-07-14 00:15:52 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2008-07-14 00:15:52 +0000 |
| commit | 16395e51f4cc25748bf4f6b9f21549680b43c620 (patch) | |
| tree | 2b0003e4722ae45fd268e8f8e428c2cd685a52c6 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | |
| parent | 80b03a1b49b47661aac50ef02259626f14e15a16 (diff) | |
| download | bcm5719-llvm-16395e51f4cc25748bf4f6b9f21549680b43c620.tar.gz bcm5719-llvm-16395e51f4cc25748bf4f6b9f21549680b43c620.zip | |
Fix PR2506 by being a bit more careful about reverse fact propagation when
disproving a condition. This actually compiles the existing testcase
(udiv_select_to_select_shift) to:
define i64 @test(i64 %X, i1 %Cond) {
entry:
%divisor1.t = lshr i64 %X, 3 ; <i64> [#uses=1]
%quotient2 = lshr i64 %X, 3 ; <i64> [#uses=1]
%sum = add i64 %divisor1.t, %quotient2 ; <i64> [#uses=1]
ret i64 %sum
}
instead of:
define i64 @test(i64 %X, i1 %Cond) {
entry:
%quotient1.v = select i1 %Cond, i64 3, i64 4 ; <i64> [#uses=1]
%quotient1 = lshr i64 %X, %quotient1.v ; <i64> [#uses=1]
%quotient2 = lshr i64 %X, 3 ; <i64> [#uses=1]
%sum = add i64 %quotient1, %quotient2 ; <i64> [#uses=1]
ret i64 %sum
}
llvm-svn: 53534
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp')
0 files changed, 0 insertions, 0 deletions

