https://llvm.org/bugs/show_bug.cgi?id=27792
Yichao Yu <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED |--- --- Comment #5 from Yichao Yu <[email protected]> --- Unfortunately I don't think the issue is completely fixed yet. New reduced repro (this time a simple integer comparison) ``` office:~/projects/julia/tests/llvm yuyichao% usr/bin/opt -O3 -S -o - a.ll ; ModuleID = 'a.ll' source_filename = "a.ll" ; Function Attrs: norecurse nounwind readnone define i1 @julia_f_49350(i128) #0 { top: %1 = icmp ugt i128 %0, 18446744073709551616 ret i1 %1 } attributes #0 = { norecurse nounwind readnone } office:~/projects/julia/tests/llvm yuyichao% cat a.ll define i1 @julia_f_49350(i128) { top: %1 = icmp ule i128 1, %0 %2 = or i1 false, %1 ret i1 %2 } ``` -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list [email protected] http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
