
This adds -no-opaque-pointers to clang tests whose output will change when opaque pointers are enabled by default. This is intended to be part of the migration approach described in https://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9. The patch has been produced by replacing %clang_cc1 with %clang_cc1 -no-opaque-pointers for tests that fail with opaque pointers enabled. Worth noting that this doesn't cover all tests, there's a remaining ~40 tests not using %clang_cc1 that will need a followup change. Differential Revision: https://reviews.llvm.org/D123115
41 lines
2.2 KiB
C
41 lines
2.2 KiB
C
// RUN: %clang_cc1 -no-opaque-pointers -fsanitize=implicit-unsigned-integer-truncation -fsanitize-recover=implicit-unsigned-integer-truncation -emit-llvm %s -o - -triple x86_64-linux-gnu | FileCheck %s -implicit-check-not="call void @__ubsan_handle_implicit_conversion" --check-prefixes=CHECK
|
|
|
|
// CHECK-DAG: @[[LINE_100_UNSIGNED_TRUNCATION:.*]] = {{.*}}, i32 100, i32 10 }, {{.*}}, {{.*}}, i8 1 }
|
|
// CHECK-DAG: @[[LINE_200_UNSIGNED_TRUNCATION:.*]] = {{.*}}, i32 200, i32 10 }, {{.*}}, {{.*}}, i8 1 }
|
|
|
|
// CHECK-LABEL: @ignorelist_0_convert_unsigned_int_to_unsigned_char
|
|
__attribute__((no_sanitize("undefined"))) unsigned char ignorelist_0_convert_unsigned_int_to_unsigned_char(unsigned int x) {
|
|
// We are not in "undefined" group, so that doesn't work.
|
|
// CHECK: call void @__ubsan_handle_implicit_conversion(i8* bitcast ({ {{{.*}}}, {{{.*}}}*, {{{.*}}}*, i8 }* @[[LINE_100_UNSIGNED_TRUNCATION]] to i8*)
|
|
#line 100
|
|
return x;
|
|
}
|
|
|
|
// CHECK-LABEL: @ignorelist_1_convert_unsigned_int_to_unsigned_char
|
|
__attribute__((no_sanitize("integer"))) unsigned char ignorelist_1_convert_unsigned_int_to_unsigned_char(unsigned int x) {
|
|
return x;
|
|
}
|
|
|
|
// CHECK-LABEL: @ignorelist_2_convert_unsigned_int_to_unsigned_char
|
|
__attribute__((no_sanitize("implicit-conversion"))) unsigned char ignorelist_2_convert_unsigned_int_to_unsigned_char(unsigned int x) {
|
|
return x;
|
|
}
|
|
|
|
// CHECK-LABEL: @ignorelist_3_convert_unsigned_int_to_unsigned_char
|
|
__attribute__((no_sanitize("implicit-integer-truncation"))) unsigned char ignorelist_3_convert_unsigned_int_to_unsigned_char(unsigned int x) {
|
|
return x;
|
|
}
|
|
|
|
// CHECK-LABEL: @ignorelist_4_convert_unsigned_int_to_unsigned_char
|
|
__attribute__((no_sanitize("implicit-unsigned-integer-truncation"))) unsigned char ignorelist_4_convert_unsigned_int_to_unsigned_char(unsigned int x) {
|
|
return x;
|
|
}
|
|
|
|
// CHECK-LABEL: @ignorelist_5_convert_unsigned_int_to_unsigned_char
|
|
__attribute__((no_sanitize("implicit-signed-integer-truncation"))) unsigned char ignorelist_5_convert_unsigned_int_to_unsigned_char(unsigned int x) {
|
|
// This is an unsigned truncation, not signed-one.
|
|
// CHECK: call void @__ubsan_handle_implicit_conversion(i8* bitcast ({ {{{.*}}}, {{{.*}}}*, {{{.*}}}*, i8 }* @[[LINE_200_UNSIGNED_TRUNCATION]] to i8*)
|
|
#line 200
|
|
return x;
|
|
}
|