| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- // 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
- //
- // AUTOUPDATE
- fn Main() -> (i32, i32) {
- return (15, 35);
- }
- // CHECK:STDOUT: cross_reference_irs_size: 1
- // CHECK:STDOUT: functions: [
- // CHECK:STDOUT: {name: str0, param_refs: block0, return_type: type2, body: [block3]},
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: integer_literals: [
- // CHECK:STDOUT: 15,
- // CHECK:STDOUT: 35,
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: real_literals: [
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: strings: [
- // CHECK:STDOUT: Main,
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: types: [
- // CHECK:STDOUT: node+2,
- // CHECK:STDOUT: nodeIntegerType,
- // CHECK:STDOUT: node+4,
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: type_blocks: [
- // CHECK:STDOUT: [
- // CHECK:STDOUT: typeTypeType,
- // CHECK:STDOUT: typeTypeType,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: type1,
- // CHECK:STDOUT: type1,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: nodes: [
- // CHECK:STDOUT: {kind: StubReference, arg0: nodeIntegerType, type: typeTypeType},
- // CHECK:STDOUT: {kind: StubReference, arg0: nodeIntegerType, type: typeTypeType},
- // CHECK:STDOUT: {kind: TupleType, arg0: typeBlock0, type: typeTypeType},
- // CHECK:STDOUT: {kind: TupleValue, arg0: block2, type: type0},
- // CHECK:STDOUT: {kind: TupleType, arg0: typeBlock1, type: typeTypeType},
- // CHECK:STDOUT: {kind: FunctionDeclaration, arg0: function0},
- // CHECK:STDOUT: {kind: IntegerLiteral, arg0: int0, type: type1},
- // CHECK:STDOUT: {kind: StubReference, arg0: node+6, type: type1},
- // CHECK:STDOUT: {kind: IntegerLiteral, arg0: int1, type: type1},
- // CHECK:STDOUT: {kind: StubReference, arg0: node+8, type: type1},
- // CHECK:STDOUT: {kind: TupleValue, arg0: block4, type: type2},
- // CHECK:STDOUT: {kind: ReturnExpression, arg0: node+10},
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: node_blocks: [
- // CHECK:STDOUT: [
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+0,
- // CHECK:STDOUT: node+1,
- // CHECK:STDOUT: node+2,
- // CHECK:STDOUT: node+3,
- // CHECK:STDOUT: node+4,
- // CHECK:STDOUT: node+5,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+0,
- // CHECK:STDOUT: node+1,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+6,
- // CHECK:STDOUT: node+7,
- // CHECK:STDOUT: node+8,
- // CHECK:STDOUT: node+9,
- // CHECK:STDOUT: node+10,
- // CHECK:STDOUT: node+11,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+7,
- // CHECK:STDOUT: node+9,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: ]
- // CHECK:STDOUT:
- // CHECK:STDOUT: package {
- // CHECK:STDOUT: %.loc8_15: type = stub_reference i32
- // CHECK:STDOUT: %.loc8_20: type = stub_reference i32
- // CHECK:STDOUT: %.loc8_23.1: type = tuple_type (type, type)
- // CHECK:STDOUT: %.loc8_23.2: (type, type) = tuple_value (%.loc8_15, %.loc8_20)
- // CHECK:STDOUT: %.loc8_23.3: type = tuple_type (i32, i32)
- // CHECK:STDOUT: %.loc8_1 = fn_decl @Main
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Main() -> (i32, i32) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %.loc9_11.1: i32 = int_literal 15
- // CHECK:STDOUT: %.loc9_11.2: i32 = stub_reference %.loc9_11.1
- // CHECK:STDOUT: %.loc9_15.1: i32 = int_literal 35
- // CHECK:STDOUT: %.loc9_15.2: i32 = stub_reference %.loc9_15.1
- // CHECK:STDOUT: %.loc9_17: (i32, i32) = tuple_value (%.loc9_11.2, %.loc9_15.2)
- // CHECK:STDOUT: return %.loc9_17
- // CHECK:STDOUT: }
|