| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // 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
- // OK, `const (const i32)` is the same type as `const i32`.
- // CHECK:STDERR: collapse.carbon:[[@LINE+3]]:25: `const` applied repeatedly to the same type has no additional effect.
- // CHECK:STDERR: fn F(p: const i32**) -> const (const i32)** {
- // CHECK:STDERR: ^
- fn F(p: const i32**) -> const (const i32)** {
- return p;
- }
- // CHECK:STDOUT: cross_reference_irs_size: 1
- // CHECK:STDOUT: functions: [
- // CHECK:STDOUT: {name: str0, param_refs: block2, return_type: type3, body: [block4]},
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: integer_literals: [
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: real_literals: [
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: strings: [
- // CHECK:STDOUT: F,
- // CHECK:STDOUT: p,
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: types: [
- // CHECK:STDOUT: nodeIntegerType,
- // CHECK:STDOUT: node+0,
- // CHECK:STDOUT: node+1,
- // CHECK:STDOUT: node+2,
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: type_blocks: [
- // CHECK:STDOUT: ]
- // CHECK:STDOUT: nodes: [
- // CHECK:STDOUT: {kind: ConstType, arg0: type0, type: typeTypeType},
- // CHECK:STDOUT: {kind: PointerType, arg0: type1, type: typeTypeType},
- // CHECK:STDOUT: {kind: PointerType, arg0: type2, type: typeTypeType},
- // CHECK:STDOUT: {kind: VarStorage, arg0: str1, type: type3},
- // CHECK:STDOUT: {kind: ConstType, arg0: type0, type: typeTypeType},
- // CHECK:STDOUT: {kind: ConstType, arg0: type1, type: typeTypeType},
- // CHECK:STDOUT: {kind: PointerType, arg0: type1, type: typeTypeType},
- // CHECK:STDOUT: {kind: PointerType, arg0: type2, type: typeTypeType},
- // CHECK:STDOUT: {kind: FunctionDeclaration, arg0: function0},
- // CHECK:STDOUT: {kind: ReturnExpression, arg0: node+3},
- // 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: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+3,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+4,
- // CHECK:STDOUT: node+5,
- // CHECK:STDOUT: node+6,
- // CHECK:STDOUT: node+7,
- // CHECK:STDOUT: node+8,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: [
- // CHECK:STDOUT: node+9,
- // CHECK:STDOUT: ],
- // CHECK:STDOUT: ]
- // CHECK:STDOUT:
- // CHECK:STDOUT: package {
- // CHECK:STDOUT: %.loc11_32: type = const_type i32
- // CHECK:STDOUT: %.loc11_25: type = const_type const i32
- // CHECK:STDOUT: %.loc11_42: type = ptr_type const i32
- // CHECK:STDOUT: %.loc11_43: type = ptr_type const i32*
- // CHECK:STDOUT: %.loc11_1 = fn_decl @F
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F(%p: const i32**) -> const i32** {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return %p
- // CHECK:STDOUT: }
|