literal_member_access.carbon 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. fn G() -> {.x: i32, .y: i32, .z: i32};
  7. fn F() -> i32 {
  8. return {.a = 1, .b = G(), .c = 3}.b.y;
  9. }
  10. // CHECK:STDOUT: --- literal_member_access.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.loc7: type = ptr_type {.x: i32, .y: i32, .z: i32}
  14. // CHECK:STDOUT: %.loc10_35.1: type = struct_type {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32}
  15. // CHECK:STDOUT: %.loc10_35.2: type = struct_type {.a: i32, .b: {.x: i32, .y: i32, .z: i32}*, .c: i32}
  16. // CHECK:STDOUT: %.loc10_35.3: type = ptr_type {.a: i32, .b: {.x: i32, .y: i32, .z: i32}*, .c: i32}
  17. // CHECK:STDOUT: }
  18. // CHECK:STDOUT:
  19. // CHECK:STDOUT: file {
  20. // CHECK:STDOUT: package: <namespace> = namespace {.G = %G, .F = %F}
  21. // CHECK:STDOUT: %G: <function> = fn_decl @G
  22. // CHECK:STDOUT: %F: <function> = fn_decl @F
  23. // CHECK:STDOUT: }
  24. // CHECK:STDOUT:
  25. // CHECK:STDOUT: fn @G() -> %return: {.x: i32, .y: i32, .z: i32};
  26. // CHECK:STDOUT:
  27. // CHECK:STDOUT: fn @F() -> i32 {
  28. // CHECK:STDOUT: !entry:
  29. // CHECK:STDOUT: %.loc10_16: i32 = int_literal 1
  30. // CHECK:STDOUT: %G.ref: <function> = name_ref G, file.%G
  31. // CHECK:STDOUT: %.loc10_25.1: ref {.x: i32, .y: i32, .z: i32} = temporary_storage
  32. // CHECK:STDOUT: %.loc10_25.2: init {.x: i32, .y: i32, .z: i32} = call %G.ref() to %.loc10_25.1
  33. // CHECK:STDOUT: %.loc10_34: i32 = int_literal 3
  34. // CHECK:STDOUT: %.loc10_35.1: {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} = struct_literal (%.loc10_16, %.loc10_25.2, %.loc10_34)
  35. // CHECK:STDOUT: %.loc10_25.3: ref {.x: i32, .y: i32, .z: i32} = temporary %.loc10_25.1, %.loc10_25.2
  36. // CHECK:STDOUT: %.loc10_25.4: ref i32 = struct_access %.loc10_25.3, element0
  37. // CHECK:STDOUT: %.loc10_25.5: i32 = bind_value %.loc10_25.4
  38. // CHECK:STDOUT: %.loc10_25.6: ref i32 = struct_access %.loc10_25.3, element1
  39. // CHECK:STDOUT: %.loc10_25.7: i32 = bind_value %.loc10_25.6
  40. // CHECK:STDOUT: %.loc10_25.8: ref i32 = struct_access %.loc10_25.3, element2
  41. // CHECK:STDOUT: %.loc10_25.9: i32 = bind_value %.loc10_25.8
  42. // CHECK:STDOUT: %.loc10_25.10: {.x: i32, .y: i32, .z: i32} = struct_value (%.loc10_25.5, %.loc10_25.7, %.loc10_25.9)
  43. // CHECK:STDOUT: %.loc10_25.11: {.x: i32, .y: i32, .z: i32} = converted %.loc10_25.2, %.loc10_25.10
  44. // CHECK:STDOUT: %.loc10_35.2: {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} = struct_value (%.loc10_16, %.loc10_25.11, %.loc10_34)
  45. // CHECK:STDOUT: %.loc10_35.3: {.a: i32, .b: {.x: i32, .y: i32, .z: i32}, .c: i32} = converted %.loc10_35.1, %.loc10_35.2
  46. // CHECK:STDOUT: %.loc10_36: {.x: i32, .y: i32, .z: i32} = struct_access %.loc10_35.3, element1
  47. // CHECK:STDOUT: %.loc10_38: i32 = struct_access %.loc10_36, element1
  48. // CHECK:STDOUT: return %.loc10_38
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT: