Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-extract / extract-multiple-blocks.ll
blob64c9c4f0d980e335f5535c2ab70086c4a8c81bca
1 ; RUN: llvm-extract -S -bb foo:bb4 -bb foo:bb7 %s | FileCheck %s
3 ; CHECK: @foo.bb4
4 ; CHECK: @foo.bb7
5 define i32 @foo(i32 %arg) {
6 bb:
7   %tmp = alloca i32, align 4
8   %tmp1 = alloca i32, align 4
9   store i32 %arg, ptr %tmp1, align 4
10   %tmp2 = load i32, ptr %tmp1, align 4
11   %tmp3 = icmp sgt i32 %tmp2, 0
12   br i1 %tmp3, label %bb4, label %bb7
14 bb4:                                              ; preds = %bb
15   %tmp5 = load i32, ptr %tmp1, align 4
16   %tmp6 = add nsw i32 %tmp5, 1
17   store i32 %tmp6, ptr %tmp1, align 4
18   store i32 %tmp6, ptr %tmp, align 4
19   br label %bb8
21 bb7:                                              ; preds = %bb
22   store i32 0, ptr %tmp, align 4
23   br label %bb8
25 bb8:                                              ; preds = %bb7, %bb4
26   %tmp9 = load i32, ptr %tmp, align 4
27   ret i32 %tmp9