mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Track the callee expression in full, instead of only tracking the callee's FunctionId. This results in the `name_reference` denoting the function actually being used. Lowering now propagates a `llvm::Function*` as the value associated with expressions of type `<function>`. We were not creating `NameReference` node for names produced by member access into a namespace, such as the second name in `Namespace.Function`, which caused lowering of calls to such names to fail. This is now fixed, but the resulting `NameReference` node only refers to the name and the lookup result, not to the `Namespace.` qualifier. We'll need to decide how to fit a third operand into that node (perhaps we can stop storing the `name_id`, since it can be derived from the lookup result) but for now the qualifier is not tracked.
30 lines
836 B
Plaintext
30 lines
836 B
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 Foo() {}
|
|
|
|
fn Main() {
|
|
Foo();
|
|
}
|
|
|
|
// CHECK:STDOUT: file "params_zero.carbon" {
|
|
// CHECK:STDOUT: %Foo: <function> = fn_decl @Foo
|
|
// CHECK:STDOUT: %Main: <function> = fn_decl @Main
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @Foo() {
|
|
// CHECK:STDOUT: !entry:
|
|
// CHECK:STDOUT: return
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @Main() {
|
|
// CHECK:STDOUT: !entry:
|
|
// CHECK:STDOUT: %Foo.ref: <function> = name_reference "Foo", package.%Foo
|
|
// CHECK:STDOUT: %.loc10_6.1: type = tuple_type ()
|
|
// CHECK:STDOUT: %.loc10_6.2: init () = call %Foo.ref()
|
|
// CHECK:STDOUT: return
|
|
// CHECK:STDOUT: }
|