| 123456789101112131415161718192021222324252627282930313233 |
- // 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 Add(a: i32, b: i32) -> i32 = "int.sadd";
- // CHECK:STDOUT: --- definition.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Add: type = fn_type @Add [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %struct: Add = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = %Core
- // CHECK:STDOUT: .Add = %Add.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
- // CHECK:STDOUT: %Add.decl: Add = fn_decl @Add [template = constants.%struct] {
- // CHECK:STDOUT: %a.loc7_8.1: i32 = param a
- // CHECK:STDOUT: @Add.%a: i32 = bind_name a, %a.loc7_8.1
- // CHECK:STDOUT: %b.loc7_16.1: i32 = param b
- // CHECK:STDOUT: @Add.%b: i32 = bind_name b, %b.loc7_16.1
- // CHECK:STDOUT: @Add.%return: ref i32 = var <return slot>
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Add(%a: i32, %b: i32) -> i32 = "int.sadd";
- // CHECK:STDOUT:
|