Chris Lattner b354343af7 Minor tweak. Instead of generating:
movl 32(%esp), %eax
        cmpl $1, %eax
        je LBB1_1       #bb
LBB1_4: #entry
        cmpl $2, %eax
        je LBB1_2       #bb2
        jmp LBB1_3      #UnifiedReturnBlock
LBB1_1: #bb

notice that we would miss the fall through and emit this instead:

        movl 32(%esp), %eax
        cmpl $2, %eax
        je LBB1_2       #bb2
LBB1_4: #entry
        cmpl $1, %eax
        jne LBB1_3      #UnifiedReturnBlock
LBB1_1: #bb


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31130 91177308-0d34-0410-b5e6-96231b3b80d8
2006-10-23 18:38:22 +00:00
..
2006-08-25 19:54:53 +00:00
2006-10-22 07:03:43 +00:00
2006-10-20 07:07:24 +00:00
2006-10-20 07:07:24 +00:00
2006-10-20 07:07:24 +00:00
2006-10-20 07:07:24 +00:00
2006-09-14 06:21:59 +00:00
2006-10-22 21:40:12 +00:00
2006-10-22 06:06:56 +00:00
2006-05-17 22:55:35 +00:00