; RUN: llc -march=bpfel -filetype=obj -o - %s | llvm-objdump -d - | FileCheck %s ; Source Code: ; int test(int a, int b) { ; int s = 0; ; while (a < b) { s++; a += s; b -= s; } ; return s; ; } define i32 @test(i32, i32) local_unnamed_addr #0 { ; CHECK-LABEL: test: %3 = icmp slt i32 %0, %1 br i1 %3, label %4, label %13 ;