Files
clang-p2996/clang/test/CodeGenCXX/ubsan-bitfields.cpp
Nikita Popov 532dc62b90 [OpaquePtrs][Clang] Add -no-opaque-pointers to tests (NFC)
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
2022-04-07 12:09:47 +02:00

35 lines
826 B
C++

// RUN: %clang_cc1 -no-opaque-pointers -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fsanitize=bool,enum | FileCheck %s
enum E {
a = 1,
b = 2,
c = 3
};
struct S {
E e1 : 10;
};
// CHECK-LABEL: define{{.*}} i32 @_Z4loadP1S
E load(S *s) {
// CHECK: [[LOAD:%.*]] = load i16, i16* {{.*}}
// CHECK: [[CLEAR:%.*]] = and i16 [[LOAD]], 1023
// CHECK: [[CAST:%.*]] = zext i16 [[CLEAR]] to i32
// CHECK: icmp ule i32 [[CAST]], 3, !nosanitize
// CHECK: call void @__ubsan_handle_load_invalid_value
return s->e1;
}
struct Bool {
bool b1 : 1;
bool b2 : 7;
bool b3 : 16;
};
// CHECK-LABEL: define{{.*}} zeroext i1 @_Z13load_cpp_boolP4Bool
bool load_cpp_bool(Bool *b) {
// CHECK-NOT: call void @__ubsan_handle_load_invalid_value
// CHECK-NOT: !nosanitize
return b->b1 || b->b2 || b->b3;
}