mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This replaces the use of `VarStorage` in this case. Add an `UnboundFieldType` type as the type of a field, in cases where it's referenced without an accompanying object. Add a `BindName` node to describe the name binding performed for both variables and fields so that we can handle them more uniformly.
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
// 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 F() -> i32 {
|
|
var n: i32 = 0;
|
|
var p: i32* = &n;
|
|
|
|
return *p;
|
|
}
|
|
|
|
// CHECK:STDOUT: file "basic.carbon" {
|
|
// CHECK:STDOUT: %F: <function> = fn_decl @F
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @F() -> i32 {
|
|
// CHECK:STDOUT: !entry:
|
|
// CHECK:STDOUT: %n.var: ref i32 = var "n"
|
|
// CHECK:STDOUT: %n: ref i32 = bind_name "n", %n.var
|
|
// CHECK:STDOUT: %.loc8: i32 = int_literal 0
|
|
// CHECK:STDOUT: assign %n.var, %.loc8
|
|
// CHECK:STDOUT: %.loc9_13: type = ptr_type i32
|
|
// CHECK:STDOUT: %p.var: ref i32* = var "p"
|
|
// CHECK:STDOUT: %p: ref i32* = bind_name "p", %p.var
|
|
// CHECK:STDOUT: %n.ref: ref i32 = name_reference "n", %n
|
|
// CHECK:STDOUT: %.loc9_17: i32* = address_of %n.ref
|
|
// CHECK:STDOUT: assign %p.var, %.loc9_17
|
|
// CHECK:STDOUT: %p.ref: ref i32* = name_reference "p", %p
|
|
// CHECK:STDOUT: %.loc11_11: i32* = bind_value %p.ref
|
|
// CHECK:STDOUT: %.loc11_10.1: ref i32 = dereference %.loc11_11
|
|
// CHECK:STDOUT: %.loc11_10.2: i32 = bind_value %.loc11_10.1
|
|
// CHECK:STDOUT: return %.loc11_10.2
|
|
// CHECK:STDOUT: }
|