mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:00:12 +01:00
Updated patch 0006 to include new files added in https://github.com/llvm/llvm-project/pull/207543. Dropped patch 0009 which was upstreamed in: https://github.com/llvm/llvm-project/pull/190088 Minor updates to patch 0011 for changes upstream. Minor updates in export.cpp to use `llvm::FoldingSetInsertToken` instead of a void pointer.
55 lines
2.7 KiB
Plaintext
55 lines
2.7 KiB
Plaintext
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
// INCLUDE-FILE: toolchain/testing/testdata/min_prelude/bool.carbon
|
|
//
|
|
// AUTOUPDATE
|
|
// TIP: To test this file alone, run:
|
|
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/operators/and_empty_block.carbon
|
|
// TIP: To dump output, run:
|
|
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/operators/and_empty_block.carbon
|
|
|
|
fn And(b: bool, c: bool) -> bool {
|
|
// Note that in this case, we must generate an empty block so that the `phi`
|
|
// has two distinct predecessors.
|
|
return b and c;
|
|
}
|
|
|
|
// CHECK:STDOUT: ; ---
|
|
// CHECK:STDOUT: ; ModuleID = 'and_empty_block.carbon'
|
|
// CHECK:STDOUT: source_filename = "and_empty_block.carbon"
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: ; Function Attrs: nounwind
|
|
// CHECK:STDOUT: define i1 @_CAnd.Main(i1 %b, i1 %c) #0 !dbg !21 {
|
|
// CHECK:STDOUT: entry:
|
|
// CHECK:STDOUT: br i1 %b, label %and.rhs, label %and.result, !dbg !28
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: and.rhs: ; preds = %entry
|
|
// CHECK:STDOUT: br label %and.result, !dbg !28
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: and.result: ; preds = %and.rhs, %entry
|
|
// CHECK:STDOUT: %0 = phi i1 [ false, %entry ], [ %c, %and.rhs ]
|
|
// CHECK:STDOUT: ret i1 %0, !dbg !30
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: attributes #0 = { nounwind }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: !llvm.dbg.cu = !{!17}
|
|
// CHECK:STDOUT: !llvm.module.flags = !{!2, !3}
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: !2 = !{i32 7, !"Dwarf Version", i32 5}
|
|
// CHECK:STDOUT: !3 = !{i32 2, !"Debug Info Version", i32 3}
|
|
// CHECK:STDOUT: !16 = !DIFile(filename: "and_empty_block.carbon", directory: "")
|
|
// CHECK:STDOUT: !17 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !16, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
|
|
// CHECK:STDOUT: !18 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 64)
|
|
// CHECK:STDOUT: !19 = !{!18, !18, !18}
|
|
// CHECK:STDOUT: !20 = !DISubroutineType(types: !19)
|
|
// CHECK:STDOUT: !21 = distinct !DISubprogram(name: "And", linkageName: "_CAnd.Main", scope: null, file: !16, line: 13, type: !20, spFlags: DISPFlagDefinition, unit: !17, retainedNodes: !31)
|
|
// CHECK:STDOUT: !22 = !DILocalVariable(arg: 1, scope: !21, type: !18)
|
|
// CHECK:STDOUT: !23 = !DILocalVariable(arg: 2, scope: !21, type: !18)
|
|
// CHECK:STDOUT: !28 = !DILocation(line: 16, column: 10, scope: !21)
|
|
// CHECK:STDOUT: !30 = !DILocation(line: 16, column: 3, scope: !21)
|
|
// CHECK:STDOUT: !31 = !{!22, !23}
|
|
// CHECK:STDOUT:
|