Test Failure: Transforms/StraightLineStrengthReduce/slsr-add.ll

Test source: git

Log:

Source: <stdin>

----------------------------------------
define void @shl(i32 %b, i32 %s) {
%0:
  %t1 = add i32 %b, %s
  call void @foo(i32 %t1)
  %s2 = shl i32 %s, 1
  %t2 = add i32 %b, %s2
  call void @foo(i32 %t2)
  ret void
}
=>
define void @shl(i32 %b, i32 %s) {
%0:
  %t1 = add i32 %b, %s
  call void @foo(i32 %t1)
  %t2 = add i32 %t1, %s
  call void @foo(i32 %t2)
  ret void
}
Transformation doesn't verify!
ERROR: Source is more defined than target

Example:
i32 %b = #x00000000 (0)
i32 %s = undef

Source:
i32 %t1 = #x00000000 (0)	[based on undef value]
i32 %s2 = #x00000000 (0)	[based on undef value]
i32 %t2 = #x00000000 (0)
void = UB triggered!

SOURCE MEMORY STATE
===================
NON-LOCAL BLOCKS:
Block 0 >	size: 0	align: 1	alloc type: 0
Block 1 >	size: 0	align: 1

Target:
i32 %t1 = #x37fffdaa (939523498)
void = UB triggered!



------------------- SMT STATS -------------------
Num queries: 4
Num invalid: 0
Num skips:   0
Num trivial: 6 (60.0%)
Num timeout: 0 (0.0%)
Num errors:  0 (0.0%)
Num SAT:     4 (100.0%)
Num UNSAT:   0 (0.0%)
Alive2: Transform doesn't verify; aborting!

stderr:

+ : 'RUN: at line 2'
+ /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/StraightLineStrengthReduce/slsr-add.ll
+ /home/nlopes/alive2/build/opt-alive.sh -slsr -gvn -S

FileCheck error: '<stdin>' is empty.
FileCheck command line:  /home/nlopes/llvm/build/bin/FileCheck /home/nlopes/llvm/llvm/test/Transforms/StraightLineStrengthReduce/slsr-add.ll

 

NOTE: This test would pass if undef didn't exist!

 

<-- Back