[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / BPF / remove_truncate_8.ll
blobe1acd22d6693ded34371219cd7ad73ece2295ff3
1 ; RUN: llc < %s -march=bpf -verify-machineinstrs | FileCheck %s
2 ; Source Code:
3 ;   struct loc_prog {
4 ;     unsigned int ip;
5 ;     int len;
6 ;   };
7 ;   int exec_prog(struct loc_prog *prog) {
8 ;     if (prog->ip < prog->len) {
9 ;       int x = prog->ip;
10 ;       if (x < 3)
11 ;         prog->ip += 2;
12 ;     }
13 ;     return 3;
14 ;   }
15 ; Compilation flag:
16 ;   clang -target bpf -O2 -S -emit-llvm t.c
18 %struct.loc_prog = type { i32, i32 }
20 ; Function Attrs: nofree norecurse nounwind willreturn
21 define dso_local i32 @exec_prog(ptr nocapture %prog) local_unnamed_addr {
22 entry:
23   %0 = load i32, ptr %prog, align 4
24   %len = getelementptr inbounds %struct.loc_prog, ptr %prog, i64 0, i32 1
25   %1 = load i32, ptr %len, align 4
26   %cmp = icmp ult i32 %0, %1
27   %cmp2 = icmp slt i32 %0, 3
28   %or.cond = and i1 %cmp2, %cmp
29 ; CHECK: r{{[0-9]+}} <<= 32
30 ; CHECK: r{{[0-9]+}} s>>= 32
31   br i1 %or.cond, label %if.then3, label %if.end5
33 if.then3:                                         ; preds = %entry
34   %add = add nsw i32 %0, 2
35   store i32 %add, ptr %prog, align 4
36   br label %if.end5
38 if.end5:                                          ; preds = %if.then3, %entry
39   ret i32 3