llvm-project/clang/test/CodeGen/unsigned-overflow-minimal.c
Fangrui Song dbc96b518b Revert "[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition"
This reverts commit 789a46f2d742e11edaade28cb59a0f4d2a1d770e.

Accidentally committed.
2020-02-03 10:09:39 -08:00

22 lines
619 B
C

// RUN: %clang_cc1 -triple x86_64-linux-gnu -fsanitize=unsigned-integer-overflow -fsanitize-minimal-runtime %s -emit-llvm -o - | FileCheck %s
unsigned long li, lj, lk;
// CHECK-LABEL: define void @testlongadd()
void testlongadd() {
// CHECK: call void @__ubsan_handle_add_overflow_minimal_abort()
li = lj + lk;
}
// CHECK-LABEL: define void @testlongsub()
void testlongsub() {
// CHECK: call void @__ubsan_handle_sub_overflow_minimal_abort()
li = lj - lk;
}
// CHECK-LABEL: define void @testlongmul()
void testlongmul() {
// CHECK: call void @__ubsan_handle_mul_overflow_minimal_abort()
li = lj * lk;
}