1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_addvsi3
3 //===-- addvsi3_test.c - Test __addvsi3 -----------------------------------===//
5 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6 // See https://llvm.org/LICENSE.txt for license information.
7 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 //===----------------------------------------------------------------------===//
11 // This file tests __addvsi3 for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
20 // Effects: aborts if a + b overflows
22 COMPILER_RT_ABI si_int
__addvsi3(si_int a
, si_int b
);
24 int test__addvsi3(si_int a
, si_int b
)
26 si_int x
= __addvsi3(a
, b
);
27 si_int expected
= a
+ b
;
29 printf("error in test__addvsi3(0x%X, 0x%X) = %d, expected %d\n",
36 // test__addvsi3(0x80000000, -1); // should abort
37 // test__addvsi3(-1, 0x80000000); // should abort
38 // test__addvsi3(1, 0x7FFFFFFF); // should abort
39 // test__addvsi3(0x7FFFFFFF, 1); // should abort
41 if (test__addvsi3(0x80000000, 1))
43 if (test__addvsi3(1, 0x80000000))
45 if (test__addvsi3(0x80000000, 0))
47 if (test__addvsi3(0, 0x80000000))
49 if (test__addvsi3(0x7FFFFFFF, -1))
51 if (test__addvsi3(-1, 0x7FFFFFFF))
53 if (test__addvsi3(0x7FFFFFFF, 0))
55 if (test__addvsi3(0, 0x7FFFFFFF))