nested_const.carbon 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. // TODO: The `const` in the return type should not be necessary.
  7. fn F(p: const (const (const i32*)*)) -> const i32 {
  8. return **p;
  9. }
  10. // CHECK:STDOUT: cross_reference_irs_size: 1
  11. // CHECK:STDOUT: functions: [
  12. // CHECK:STDOUT: {name: str0, param_refs: block2, return_type: type1, body: {block4}}},
  13. // CHECK:STDOUT: ]
  14. // CHECK:STDOUT: integer_literals: [
  15. // CHECK:STDOUT: ]
  16. // CHECK:STDOUT: real_literals: [
  17. // CHECK:STDOUT: ]
  18. // CHECK:STDOUT: strings: [
  19. // CHECK:STDOUT: F,
  20. // CHECK:STDOUT: p,
  21. // CHECK:STDOUT: ]
  22. // CHECK:STDOUT: types: [
  23. // CHECK:STDOUT: nodeIntegerType,
  24. // CHECK:STDOUT: node+0,
  25. // CHECK:STDOUT: node+1,
  26. // CHECK:STDOUT: node+2,
  27. // CHECK:STDOUT: node+3,
  28. // CHECK:STDOUT: node+4,
  29. // CHECK:STDOUT: ]
  30. // CHECK:STDOUT: type_blocks: [
  31. // CHECK:STDOUT: ]
  32. // CHECK:STDOUT: nodes: [
  33. // CHECK:STDOUT: {kind: ConstType, arg0: type0, type: typeTypeType},
  34. // CHECK:STDOUT: {kind: PointerType, arg0: type1, type: typeTypeType},
  35. // CHECK:STDOUT: {kind: ConstType, arg0: type2, type: typeTypeType},
  36. // CHECK:STDOUT: {kind: PointerType, arg0: type3, type: typeTypeType},
  37. // CHECK:STDOUT: {kind: ConstType, arg0: type4, type: typeTypeType},
  38. // CHECK:STDOUT: {kind: VarStorage, type: type5},
  39. // CHECK:STDOUT: {kind: BindName, arg0: str1, arg1: node+5, type: type5},
  40. // CHECK:STDOUT: {kind: ConstType, arg0: type0, type: typeTypeType},
  41. // CHECK:STDOUT: {kind: FunctionDeclaration, arg0: function0},
  42. // CHECK:STDOUT: {kind: Dereference, arg0: node+5, type: type3},
  43. // CHECK:STDOUT: {kind: Dereference, arg0: node+9, type: type1},
  44. // CHECK:STDOUT: {kind: ReturnExpression, arg0: node+10},
  45. // CHECK:STDOUT: ]
  46. // CHECK:STDOUT: node_blocks: [
  47. // CHECK:STDOUT: [
  48. // CHECK:STDOUT: ],
  49. // CHECK:STDOUT: [
  50. // CHECK:STDOUT: node+0,
  51. // CHECK:STDOUT: node+1,
  52. // CHECK:STDOUT: node+2,
  53. // CHECK:STDOUT: node+3,
  54. // CHECK:STDOUT: node+4,
  55. // CHECK:STDOUT: node+5,
  56. // CHECK:STDOUT: node+6,
  57. // CHECK:STDOUT: ],
  58. // CHECK:STDOUT: [
  59. // CHECK:STDOUT: node+6,
  60. // CHECK:STDOUT: ],
  61. // CHECK:STDOUT: [
  62. // CHECK:STDOUT: node+7,
  63. // CHECK:STDOUT: node+8,
  64. // CHECK:STDOUT: ],
  65. // CHECK:STDOUT: [
  66. // CHECK:STDOUT: node+9,
  67. // CHECK:STDOUT: node+10,
  68. // CHECK:STDOUT: node+11,
  69. // CHECK:STDOUT: ],
  70. // CHECK:STDOUT: ]
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: package {
  73. // CHECK:STDOUT: %.loc8_41: type = const_type i32
  74. // CHECK:STDOUT: %.loc8_1 = fn_decl @F
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT:
  77. // CHECK:STDOUT: fn @F(%p: const (const (const i32*)*)) -> const i32 {
  78. // CHECK:STDOUT: !entry:
  79. // CHECK:STDOUT: %.loc9_11: const (const i32*) = dereference %p
  80. // CHECK:STDOUT: %.loc9_10: const i32 = dereference %.loc9_11
  81. // CHECK:STDOUT: return %.loc9_10
  82. // CHECK:STDOUT: }