one_element.carbon 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/tuple/one_element.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/one_element.carbon
  10. var x: (i32,) = (4,);
  11. var y: (i32,) = x;
  12. // CHECK:STDOUT: --- one_element.carbon
  13. // CHECK:STDOUT:
  14. // CHECK:STDOUT: constants {
  15. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  16. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  17. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  18. // CHECK:STDOUT: %.2: type = tuple_type (type) [template]
  19. // CHECK:STDOUT: %.3: type = tuple_type (i32) [template]
  20. // CHECK:STDOUT: %.4: i32 = int_literal 4 [template]
  21. // CHECK:STDOUT: %tuple: %.3 = tuple_value (%.4) [template]
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: imports {
  25. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  26. // CHECK:STDOUT: .Int32 = %import_ref
  27. // CHECK:STDOUT: import Core//prelude
  28. // CHECK:STDOUT: import Core//prelude/operators
  29. // CHECK:STDOUT: import Core//prelude/types
  30. // CHECK:STDOUT: import Core//prelude/operators/arithmetic
  31. // CHECK:STDOUT: import Core//prelude/operators/bitwise
  32. // CHECK:STDOUT: import Core//prelude/operators/comparison
  33. // CHECK:STDOUT: import Core//prelude/types/bool
  34. // CHECK:STDOUT: }
  35. // CHECK:STDOUT: %import_ref: %Int32.type = import_ref Core//prelude/types, inst+4, loaded [template = constants.%Int32]
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: file {
  39. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  40. // CHECK:STDOUT: .Core = imports.%Core
  41. // CHECK:STDOUT: .x = %x
  42. // CHECK:STDOUT: .y = %y
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT: %Core.import = import Core
  45. // CHECK:STDOUT: %int.make_type_32.loc11: init type = call constants.%Int32() [template = i32]
  46. // CHECK:STDOUT: %.loc11_13.1: %.2 = tuple_literal (%int.make_type_32.loc11)
  47. // CHECK:STDOUT: %.loc11_13.2: type = value_of_initializer %int.make_type_32.loc11 [template = i32]
  48. // CHECK:STDOUT: %.loc11_13.3: type = converted %int.make_type_32.loc11, %.loc11_13.2 [template = i32]
  49. // CHECK:STDOUT: %.loc11_13.4: type = converted %.loc11_13.1, constants.%.3 [template = constants.%.3]
  50. // CHECK:STDOUT: %x.var: ref %.3 = var x
  51. // CHECK:STDOUT: %x: ref %.3 = bind_name x, %x.var
  52. // CHECK:STDOUT: %int.make_type_32.loc12: init type = call constants.%Int32() [template = i32]
  53. // CHECK:STDOUT: %.loc12_13.1: %.2 = tuple_literal (%int.make_type_32.loc12)
  54. // CHECK:STDOUT: %.loc12_13.2: type = value_of_initializer %int.make_type_32.loc12 [template = i32]
  55. // CHECK:STDOUT: %.loc12_13.3: type = converted %int.make_type_32.loc12, %.loc12_13.2 [template = i32]
  56. // CHECK:STDOUT: %.loc12_13.4: type = converted %.loc12_13.1, constants.%.3 [template = constants.%.3]
  57. // CHECK:STDOUT: %y.var: ref %.3 = var y
  58. // CHECK:STDOUT: %y: ref %.3 = bind_name y, %y.var
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: fn @__global_init() {
  64. // CHECK:STDOUT: !entry:
  65. // CHECK:STDOUT: %.loc11_18: i32 = int_literal 4 [template = constants.%.4]
  66. // CHECK:STDOUT: %.loc11_20.1: %.3 = tuple_literal (%.loc11_18)
  67. // CHECK:STDOUT: %.loc11_20.2: init %.3 = tuple_init (%.loc11_18) to file.%x.var [template = constants.%tuple]
  68. // CHECK:STDOUT: %.loc11_21: init %.3 = converted %.loc11_20.1, %.loc11_20.2 [template = constants.%tuple]
  69. // CHECK:STDOUT: assign file.%x.var, %.loc11_21
  70. // CHECK:STDOUT: %x.ref: ref %.3 = name_ref x, file.%x
  71. // CHECK:STDOUT: %.loc12_17.1: ref i32 = tuple_access %x.ref, element0
  72. // CHECK:STDOUT: %.loc12_17.2: i32 = bind_value %.loc12_17.1
  73. // CHECK:STDOUT: %.loc12_17.3: init %.3 = tuple_init (%.loc12_17.2) to file.%y.var
  74. // CHECK:STDOUT: %.loc12_18: init %.3 = converted %x.ref, %.loc12_17.3
  75. // CHECK:STDOUT: assign file.%y.var, %.loc12_18
  76. // CHECK:STDOUT: return
  77. // CHECK:STDOUT: }
  78. // CHECK:STDOUT: