| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // 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
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/primitives.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/builtins/int/greater.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/builtins/int/greater.carbon
- // --- int_greater.carbon
- fn Greater(a: i32, b: i32) -> bool = "int.greater";
- fn Negate(a: i32) -> i32 = "int.snegate";
- class True {}
- class False {}
- fn F(true_: True, false_: False) {
- false_ as (if Greater(1, 2) then True else False);
- false_ as (if Greater(1, 1) then True else False);
- true_ as (if Greater(1, 0) then True else False);
- false_ as (if Greater(Negate(1), 0) then True else False);
- true_ as (if Greater(0, Negate(1)) then True else False);
- }
- fn RuntimeCallIsValid(a: i32, b: i32) -> bool {
- //@dump-sem-ir-begin
- return Greater(a, b);
- //@dump-sem-ir-end
- }
- // CHECK:STDOUT: --- int_greater.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
- // CHECK:STDOUT: %Greater.type: type = fn_type @Greater [concrete]
- // CHECK:STDOUT: %Greater: %Greater.type = struct_value () [concrete]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @RuntimeCallIsValid(%a.param: %i32, %b.param: %i32) -> bool {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %Greater.ref: %Greater.type = name_ref Greater, file.%Greater.decl [concrete = constants.%Greater]
- // CHECK:STDOUT: %a.ref: %i32 = name_ref a, %a
- // CHECK:STDOUT: %b.ref: %i32 = name_ref b, %b
- // CHECK:STDOUT: %int.greater: init bool = call %Greater.ref(%a.ref, %b.ref)
- // CHECK:STDOUT: %.loc18_23.1: bool = value_of_initializer %int.greater
- // CHECK:STDOUT: %.loc18_23.2: bool = converted %int.greater, %.loc18_23.1
- // CHECK:STDOUT: return %.loc18_23.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|