| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // 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 G() -> {.x: i32, .y: i32, .z: i32};
- fn F() -> i32 {
- return {.a = 1, .b = G(), .c = 3}.b.y;
- }
- // CHECK:STDOUT: --- literal_member_access.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %.1: type = struct_type {.x: i32, .y: i32, .z: i32} [template]
- // CHECK:STDOUT: %G: type = fn_type @G [template]
- // CHECK:STDOUT: %.2: type = tuple_type () [template]
- // CHECK:STDOUT: %struct.1: G = struct_value () [template]
- // CHECK:STDOUT: %F: type = fn_type @F [template]
- // CHECK:STDOUT: %struct.2: F = struct_value () [template]
- // CHECK:STDOUT: %.3: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %.4: type = ptr_type {.x: i32, .y: i32, .z: i32} [template]
- // CHECK:STDOUT: %.5: i32 = int_literal 3 [template]
- // CHECK:STDOUT: %.6: type = struct_type {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} [template]
- // CHECK:STDOUT: %.7: type = struct_type {.a: i32, .b: {.x: i32, .y: i32, .z: i32}*, .c: i32} [template]
- // CHECK:STDOUT: %.8: type = ptr_type {.a: i32, .b: {.x: i32, .y: i32, .z: i32}*, .c: i32} [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = %Core
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
- // CHECK:STDOUT: %G.decl: G = fn_decl @G [template = constants.%struct.1] {
- // CHECK:STDOUT: %.loc7: type = struct_type {.x: i32, .y: i32, .z: i32} [template = constants.%.1]
- // CHECK:STDOUT: @G.%return: ref {.x: i32, .y: i32, .z: i32} = var <return slot>
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %F.decl: F = fn_decl @F [template = constants.%struct.2] {
- // CHECK:STDOUT: @F.%return: ref i32 = var <return slot>
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G() -> {.x: i32, .y: i32, .z: i32};
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() -> i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %.loc10_16: i32 = int_literal 1 [template = constants.%.3]
- // CHECK:STDOUT: %G.ref: G = name_ref G, file.%G.decl [template = constants.%struct.1]
- // CHECK:STDOUT: %.loc10_25.1: ref {.x: i32, .y: i32, .z: i32} = temporary_storage
- // CHECK:STDOUT: %G.call: init {.x: i32, .y: i32, .z: i32} = call %G.ref() to %.loc10_25.1
- // CHECK:STDOUT: %.loc10_34: i32 = int_literal 3 [template = constants.%.5]
- // CHECK:STDOUT: %.loc10_35.1: {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} = struct_literal (%.loc10_16, %G.call, %.loc10_34)
- // CHECK:STDOUT: %.loc10_25.2: ref {.x: i32, .y: i32, .z: i32} = temporary %.loc10_25.1, %G.call
- // CHECK:STDOUT: %.loc10_25.3: ref i32 = struct_access %.loc10_25.2, element0
- // CHECK:STDOUT: %.loc10_25.4: i32 = bind_value %.loc10_25.3
- // CHECK:STDOUT: %.loc10_25.5: ref i32 = struct_access %.loc10_25.2, element1
- // CHECK:STDOUT: %.loc10_25.6: i32 = bind_value %.loc10_25.5
- // CHECK:STDOUT: %.loc10_25.7: ref i32 = struct_access %.loc10_25.2, element2
- // CHECK:STDOUT: %.loc10_25.8: i32 = bind_value %.loc10_25.7
- // CHECK:STDOUT: %struct.loc10_25: {.x: i32, .y: i32, .z: i32} = struct_value (%.loc10_25.4, %.loc10_25.6, %.loc10_25.8)
- // CHECK:STDOUT: %.loc10_35.2: {.x: i32, .y: i32, .z: i32} = converted %G.call, %struct.loc10_25
- // CHECK:STDOUT: %struct.loc10_35: {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} = struct_value (%.loc10_16, %.loc10_35.2, %.loc10_34)
- // CHECK:STDOUT: %.loc10_35.3: {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} = converted %.loc10_35.1, %struct.loc10_35
- // CHECK:STDOUT: %.loc10_36: {.x: i32, .y: i32, .z: i32} = struct_access %.loc10_35.3, element1
- // CHECK:STDOUT: %.loc10_38: i32 = struct_access %.loc10_36, element1
- // CHECK:STDOUT: return %.loc10_38
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|