| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- // 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
- //
- // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only".
- // EXTRA-ARGS: --dump-sem-ir-ranges=if-present
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/base_method_qualified.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/base_method_qualified.carbon
- class Derived;
- base class Base {
- fn F[self: Self]() -> i32;
- fn G[self: Derived]() -> i32;
- }
- class Derived {
- extend base: Base;
- fn F[self: Self]();
- fn G[self: Self]();
- }
- fn Call(a: Derived) -> i32 {
- return a.(Base.F)();
- }
- fn CallIndirect(p: Derived*) -> i32 {
- return p->(Base.F)();
- }
- fn PassDerivedToBase(a: Derived) -> i32 {
- return a.(Base.G)();
- }
- fn PassDerivedToBaseIndirect(p: Derived*) -> i32 {
- return p->(Base.G)();
- }
- // CHECK:STDOUT: --- base_method_qualified.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Derived: type = class_type @Derived [concrete]
- // CHECK:STDOUT: %Base: type = class_type @Base [concrete]
- // CHECK:STDOUT: %pattern_type.bcc: type = pattern_type %Base [concrete]
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
- // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
- // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
- // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
- // CHECK:STDOUT: %F.type.7c6: type = fn_type @F.1 [concrete]
- // CHECK:STDOUT: %F.d17: %F.type.7c6 = struct_value () [concrete]
- // CHECK:STDOUT: %pattern_type.fb9: type = pattern_type %Derived [concrete]
- // CHECK:STDOUT: %G.type.6ee: type = fn_type @G.1 [concrete]
- // CHECK:STDOUT: %G.663: %G.type.6ee = struct_value () [concrete]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
- // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
- // CHECK:STDOUT: %Derived.elem: type = unbound_element_type %Derived, %Base [concrete]
- // CHECK:STDOUT: %F.type.5da: type = fn_type @F.2 [concrete]
- // CHECK:STDOUT: %F.fa3: %F.type.5da = struct_value () [concrete]
- // CHECK:STDOUT: %G.type.04c: type = fn_type @G.2 [concrete]
- // CHECK:STDOUT: %G.07e: %G.type.04c = struct_value () [concrete]
- // CHECK:STDOUT: %struct_type.base.b1e: type = struct_type {.base: %Base} [concrete]
- // CHECK:STDOUT: %complete_type.15c: <witness> = complete_type_witness %struct_type.base.b1e [concrete]
- // CHECK:STDOUT: %Call.type: type = fn_type @Call [concrete]
- // CHECK:STDOUT: %Call: %Call.type = struct_value () [concrete]
- // CHECK:STDOUT: %ptr.404: type = ptr_type %Derived [concrete]
- // CHECK:STDOUT: %pattern_type.605: type = pattern_type %ptr.404 [concrete]
- // CHECK:STDOUT: %CallIndirect.type: type = fn_type @CallIndirect [concrete]
- // CHECK:STDOUT: %CallIndirect: %CallIndirect.type = struct_value () [concrete]
- // CHECK:STDOUT: %PassDerivedToBase.type: type = fn_type @PassDerivedToBase [concrete]
- // CHECK:STDOUT: %PassDerivedToBase: %PassDerivedToBase.type = struct_value () [concrete]
- // CHECK:STDOUT: %PassDerivedToBaseIndirect.type: type = fn_type @PassDerivedToBaseIndirect [concrete]
- // CHECK:STDOUT: %PassDerivedToBaseIndirect: %PassDerivedToBaseIndirect.type = struct_value () [concrete]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
- // CHECK:STDOUT: .Int = %Core.Int
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/types/int, Int, loaded [concrete = constants.%Int.generic]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .Derived = %Derived.decl.loc14
- // CHECK:STDOUT: .Base = %Base.decl
- // CHECK:STDOUT: .Call = %Call.decl
- // CHECK:STDOUT: .CallIndirect = %CallIndirect.decl
- // CHECK:STDOUT: .PassDerivedToBase = %PassDerivedToBase.decl
- // CHECK:STDOUT: .PassDerivedToBaseIndirect = %PassDerivedToBaseIndirect.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Derived.decl.loc14: type = class_decl @Derived [concrete = constants.%Derived] {} {}
- // CHECK:STDOUT: %Base.decl: type = class_decl @Base [concrete = constants.%Base] {} {}
- // CHECK:STDOUT: %Derived.decl.loc21: type = class_decl @Derived [concrete = constants.%Derived] {} {}
- // CHECK:STDOUT: %Call.decl: %Call.type = fn_decl @Call [concrete = constants.%Call] {
- // CHECK:STDOUT: %a.patt: %pattern_type.fb9 = binding_pattern a [concrete]
- // CHECK:STDOUT: %a.param_patt: %pattern_type.fb9 = value_param_pattern %a.patt, call_param0 [concrete]
- // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
- // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
- // CHECK:STDOUT: %a.param: %Derived = value_param call_param0
- // CHECK:STDOUT: %Derived.ref: type = name_ref Derived, file.%Derived.decl.loc14 [concrete = constants.%Derived]
- // CHECK:STDOUT: %a: %Derived = bind_name a, %a.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %CallIndirect.decl: %CallIndirect.type = fn_decl @CallIndirect [concrete = constants.%CallIndirect] {
- // CHECK:STDOUT: %p.patt: %pattern_type.605 = binding_pattern p [concrete]
- // CHECK:STDOUT: %p.param_patt: %pattern_type.605 = value_param_pattern %p.patt, call_param0 [concrete]
- // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
- // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
- // CHECK:STDOUT: %p.param: %ptr.404 = value_param call_param0
- // CHECK:STDOUT: %.loc32: type = splice_block %ptr [concrete = constants.%ptr.404] {
- // CHECK:STDOUT: %Derived.ref: type = name_ref Derived, file.%Derived.decl.loc14 [concrete = constants.%Derived]
- // CHECK:STDOUT: %ptr: type = ptr_type %Derived.ref [concrete = constants.%ptr.404]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %p: %ptr.404 = bind_name p, %p.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %PassDerivedToBase.decl: %PassDerivedToBase.type = fn_decl @PassDerivedToBase [concrete = constants.%PassDerivedToBase] {
- // CHECK:STDOUT: %a.patt: %pattern_type.fb9 = binding_pattern a [concrete]
- // CHECK:STDOUT: %a.param_patt: %pattern_type.fb9 = value_param_pattern %a.patt, call_param0 [concrete]
- // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
- // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
- // CHECK:STDOUT: %a.param: %Derived = value_param call_param0
- // CHECK:STDOUT: %Derived.ref: type = name_ref Derived, file.%Derived.decl.loc14 [concrete = constants.%Derived]
- // CHECK:STDOUT: %a: %Derived = bind_name a, %a.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %PassDerivedToBaseIndirect.decl: %PassDerivedToBaseIndirect.type = fn_decl @PassDerivedToBaseIndirect [concrete = constants.%PassDerivedToBaseIndirect] {
- // CHECK:STDOUT: %p.patt: %pattern_type.605 = binding_pattern p [concrete]
- // CHECK:STDOUT: %p.param_patt: %pattern_type.605 = value_param_pattern %p.patt, call_param0 [concrete]
- // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
- // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
- // CHECK:STDOUT: %p.param: %ptr.404 = value_param call_param0
- // CHECK:STDOUT: %.loc40: type = splice_block %ptr [concrete = constants.%ptr.404] {
- // CHECK:STDOUT: %Derived.ref: type = name_ref Derived, file.%Derived.decl.loc14 [concrete = constants.%Derived]
- // CHECK:STDOUT: %ptr: type = ptr_type %Derived.ref [concrete = constants.%ptr.404]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %p: %ptr.404 = bind_name p, %p.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Derived {
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [concrete = constants.%Base]
- // CHECK:STDOUT: %.loc22: %Derived.elem = base_decl %Base.ref, element0 [concrete]
- // CHECK:STDOUT: %F.decl: %F.type.5da = fn_decl @F.2 [concrete = constants.%F.fa3] {
- // CHECK:STDOUT: %self.patt: %pattern_type.fb9 = binding_pattern self [concrete]
- // CHECK:STDOUT: %self.param_patt: %pattern_type.fb9 = value_param_pattern %self.patt, call_param0 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %self.param: %Derived = value_param call_param0
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Derived [concrete = constants.%Derived]
- // CHECK:STDOUT: %self: %Derived = bind_name self, %self.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: %G.type.04c = fn_decl @G.2 [concrete = constants.%G.07e] {
- // CHECK:STDOUT: %self.patt: %pattern_type.fb9 = binding_pattern self [concrete]
- // CHECK:STDOUT: %self.param_patt: %pattern_type.fb9 = value_param_pattern %self.patt, call_param0 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %self.param: %Derived = value_param call_param0
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Derived [concrete = constants.%Derived]
- // CHECK:STDOUT: %self: %Derived = bind_name self, %self.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %struct_type.base: type = struct_type {.base: %Base} [concrete = constants.%struct_type.base.b1e]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.base [concrete = constants.%complete_type.15c]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Derived
- // CHECK:STDOUT: .Base = <poisoned>
- // CHECK:STDOUT: .base = %.loc22
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: extend %Base.ref
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Base {
- // CHECK:STDOUT: %F.decl: %F.type.7c6 = fn_decl @F.1 [concrete = constants.%F.d17] {
- // CHECK:STDOUT: %self.patt: %pattern_type.bcc = binding_pattern self [concrete]
- // CHECK:STDOUT: %self.param_patt: %pattern_type.bcc = value_param_pattern %self.patt, call_param0 [concrete]
- // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
- // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
- // CHECK:STDOUT: %self.param: %Base = value_param call_param0
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [concrete = constants.%Base]
- // CHECK:STDOUT: %self: %Base = bind_name self, %self.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: %G.type.6ee = fn_decl @G.1 [concrete = constants.%G.663] {
- // CHECK:STDOUT: %self.patt: %pattern_type.fb9 = binding_pattern self [concrete]
- // CHECK:STDOUT: %self.param_patt: %pattern_type.fb9 = value_param_pattern %self.patt, call_param0 [concrete]
- // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
- // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
- // CHECK:STDOUT: %self.param: %Derived = value_param call_param0
- // CHECK:STDOUT: %Derived.ref: type = name_ref Derived, file.%Derived.decl.loc14 [concrete = constants.%Derived]
- // CHECK:STDOUT: %self: %Derived = bind_name self, %self.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Base
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: .Derived = <poisoned>
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F.1(%self.param: %Base) -> %i32;
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G.1(%self.param: %Derived) -> %i32;
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F.2(%self.param: %Derived);
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G.2(%self.param: %Derived);
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Call(%a.param: %Derived) -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %a.ref: %Derived = name_ref a, %a
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [concrete = constants.%Base]
- // CHECK:STDOUT: %F.ref: %F.type.7c6 = name_ref F, @Base.%F.decl [concrete = constants.%F.d17]
- // CHECK:STDOUT: %F.bound: <bound method> = bound_method %a.ref, %F.ref
- // CHECK:STDOUT: %.loc29_10.1: ref %Base = class_element_access %a.ref, element0
- // CHECK:STDOUT: %.loc29_10.2: ref %Base = converted %a.ref, %.loc29_10.1
- // CHECK:STDOUT: %.loc29_10.3: %Base = bind_value %.loc29_10.2
- // CHECK:STDOUT: %F.call: init %i32 = call %F.bound(%.loc29_10.3)
- // CHECK:STDOUT: %.loc29_22.1: %i32 = value_of_initializer %F.call
- // CHECK:STDOUT: %.loc29_22.2: %i32 = converted %F.call, %.loc29_22.1
- // CHECK:STDOUT: return %.loc29_22.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @CallIndirect(%p.param: %ptr.404) -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %p.ref: %ptr.404 = name_ref p, %p
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [concrete = constants.%Base]
- // CHECK:STDOUT: %F.ref: %F.type.7c6 = name_ref F, @Base.%F.decl [concrete = constants.%F.d17]
- // CHECK:STDOUT: %.loc33_11.1: ref %Derived = deref %p.ref
- // CHECK:STDOUT: %F.bound: <bound method> = bound_method %.loc33_11.1, %F.ref
- // CHECK:STDOUT: %.loc33_11.2: ref %Base = class_element_access %.loc33_11.1, element0
- // CHECK:STDOUT: %.loc33_11.3: ref %Base = converted %.loc33_11.1, %.loc33_11.2
- // CHECK:STDOUT: %.loc33_11.4: %Base = bind_value %.loc33_11.3
- // CHECK:STDOUT: %F.call: init %i32 = call %F.bound(%.loc33_11.4)
- // CHECK:STDOUT: %.loc33_23.1: %i32 = value_of_initializer %F.call
- // CHECK:STDOUT: %.loc33_23.2: %i32 = converted %F.call, %.loc33_23.1
- // CHECK:STDOUT: return %.loc33_23.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @PassDerivedToBase(%a.param: %Derived) -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %a.ref: %Derived = name_ref a, %a
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [concrete = constants.%Base]
- // CHECK:STDOUT: %G.ref: %G.type.6ee = name_ref G, @Base.%G.decl [concrete = constants.%G.663]
- // CHECK:STDOUT: %G.bound: <bound method> = bound_method %a.ref, %G.ref
- // CHECK:STDOUT: %G.call: init %i32 = call %G.bound(%a.ref)
- // CHECK:STDOUT: %.loc37_22.1: %i32 = value_of_initializer %G.call
- // CHECK:STDOUT: %.loc37_22.2: %i32 = converted %G.call, %.loc37_22.1
- // CHECK:STDOUT: return %.loc37_22.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @PassDerivedToBaseIndirect(%p.param: %ptr.404) -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %p.ref: %ptr.404 = name_ref p, %p
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [concrete = constants.%Base]
- // CHECK:STDOUT: %G.ref: %G.type.6ee = name_ref G, @Base.%G.decl [concrete = constants.%G.663]
- // CHECK:STDOUT: %.loc41_11.1: ref %Derived = deref %p.ref
- // CHECK:STDOUT: %G.bound: <bound method> = bound_method %.loc41_11.1, %G.ref
- // CHECK:STDOUT: %.loc41_11.2: %Derived = bind_value %.loc41_11.1
- // CHECK:STDOUT: %G.call: init %i32 = call %G.bound(%.loc41_11.2)
- // CHECK:STDOUT: %.loc41_23.1: %i32 = value_of_initializer %G.call
- // CHECK:STDOUT: %.loc41_23.2: %i32 = converted %G.call, %.loc41_23.1
- // CHECK:STDOUT: return %.loc41_23.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|