[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / SimplifyCFG / branch-fold-dbg.ll
blob41486c5935a392c79b6794af699c73b9d8d1ac8f
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -passes=simplifycfg -simplifycfg-require-and-preserve-domtree=1 -S < %s | FileCheck %s
4 %0 = type { ptr, ptr }
6 @0 = external hidden constant [5 x %0], align 4
8 define i1 @foo(i32) nounwind ssp !dbg !0 {
9 ; CHECK-LABEL: @foo(
10 ; CHECK-NEXT:  Entry:
11 ; CHECK-NEXT:    [[TMP1:%.*]] = icmp slt i32 [[TMP0:%.*]], 0
12 ; CHECK-NEXT:    [[TMP2:%.*]] = icmp sgt i32 [[TMP0]], 4
13 ; CHECK-NEXT:    [[OR_COND:%.*]] = or i1 [[TMP1]], [[TMP2]]
14 ; CHECK-NEXT:    br i1 [[OR_COND]], label [[COMMON_RET:%.*]], label [[BB2:%.*]]
15 ; CHECK:       BB2:
16 ; CHECK-NEXT:    [[TMP3:%.*]] = shl i32 1, [[TMP0]]
17 ; CHECK-NEXT:    [[TMP4:%.*]] = and i32 [[TMP3]], 31
18 ; CHECK-NEXT:    [[TMP5:%.*]] = icmp eq i32 [[TMP4]], 0
19 ; CHECK-NEXT:    [[TMP6:%.*]] = getelementptr inbounds [5 x %0], ptr @[[GLOB0:[0-9]+]], i32 0, i32 [[TMP0]]
20 ; CHECK-NEXT:    [[TMP7:%.*]] = icmp eq ptr [[TMP6]], null
21 ; CHECK-NEXT:    [[OR_COND2:%.*]] = select i1 [[TMP5]], i1 true, i1 [[TMP7]]
22 ; CHECK-NEXT:    [[TMP8:%.*]] = icmp slt i32 [[TMP0]], 0
23 ; CHECK-NEXT:    [[SPEC_SELECT:%.*]] = select i1 [[OR_COND2]], i1 false, i1 [[TMP8]]
24 ; CHECK-NEXT:    br label [[COMMON_RET]]
25 ; CHECK:       common.ret:
26 ; CHECK-NEXT:    [[COMMON_RET_OP:%.*]] = phi i1 [ false, [[ENTRY:%.*]] ], [ [[SPEC_SELECT]], [[BB2]] ]
27 ; CHECK-NEXT:    ret i1 [[COMMON_RET_OP]]
29 Entry:
30   %1 = icmp slt i32 %0, 0, !dbg !5
31   br i1 %1, label %BB5, label %BB1, !dbg !5
33 BB1:                                              ; preds = %Entry
34   %2 = icmp sgt i32 %0, 4, !dbg !5
35   br i1 %2, label %BB5, label %BB2, !dbg !5
37 BB2:                                              ; preds = %BB1
38   %3 = shl i32 1, %0, !dbg !5
39   %4 = and i32 %3, 31, !dbg !5
40   %5 = icmp eq i32 %4, 0, !dbg !5
41   br i1 %5, label %BB5, label %BB3, !dbg !5
44 BB3:                                              ; preds = %BB2
45   %6 = getelementptr inbounds [5 x %0], ptr @0, i32 0, i32 %0, !dbg !6
46   call void @llvm.dbg.value(metadata ptr %6, metadata !7, metadata !{}), !dbg !12
47   %7 = icmp eq ptr %6, null, !dbg !13
48   br i1 %7, label %BB5, label %BB4, !dbg !13
50 BB4:                                              ; preds = %BB3
51   %8 = icmp slt i32 %0, 0, !dbg !5
52   ret i1 %8, !dbg !14
54 BB5:                                              ; preds = %BB3, %BB2, %BB1, %Entry
55   ret i1 false, !dbg !14
58 declare void @llvm.dbg.value(metadata, metadata, metadata) nounwind readnone
60 !llvm.dbg.cu = !{!2}
62 !0 = distinct !DISubprogram(name: "foo", line: 231, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !2, file: !15, scope: !1, type: !3)
63 !1 = !DIFile(filename: "a.c", directory: "/private/tmp")
64 !2 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang (trunk 129006)", isOptimized: true, emissionKind: FullDebug, file: !15, enums: !4, retainedTypes: !4)
65 !3 = !DISubroutineType(types: !4)
66 !4 = !{null}
67 !5 = !DILocation(line: 131, column: 2, scope: !0)
68 !6 = !DILocation(line: 134, column: 2, scope: !0)
69 !7 = !DILocalVariable(name: "bar", line: 232, scope: !8, file: !1, type: !9)
70 !8 = distinct !DILexicalBlock(line: 231, column: 1, file: !15, scope: !0)
71 !9 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 32, align: 32, scope: !2, baseType: !10)
72 !10 = !DIDerivedType(tag: DW_TAG_const_type, scope: !2, baseType: !11)
73 !11 = !DIBasicType(tag: DW_TAG_base_type, name: "unsigned int", size: 32, align: 32, encoding: DW_ATE_unsigned)
74 !12 = !DILocation(line: 232, column: 40, scope: !8)
75 !13 = !DILocation(line: 234, column: 2, scope: !8)
76 !14 = !DILocation(line: 274, column: 1, scope: !8)
77 !15 = !DIFile(filename: "a.c", directory: "/private/tmp")