mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 19:16:05 +00:00

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
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
// RUN: %clang_cc1 -no-opaque-pointers -triple i686-pc-linux-gnu -emit-llvm -o %t-1.ll %s
|
|
// RUN: FileCheck --check-prefix=ALL -check-prefix SANE --input-file=%t-1.ll %s
|
|
// RUN: %clang_cc1 -no-opaque-pointers -triple i686-pc-linux-gnu -emit-llvm -fno-assume-sane-operator-new -o %t-2.ll %s
|
|
// RUN: FileCheck --check-prefix=ALL -check-prefix SANENOT --input-file=%t-2.ll %s
|
|
|
|
class teste {
|
|
int A;
|
|
public:
|
|
teste() : A(2) {}
|
|
};
|
|
|
|
void f1() {
|
|
// ALL: declare noundef nonnull i8* @_Znwj(
|
|
new teste();
|
|
}
|
|
|
|
// rdar://5739832 - operator new should check for overflow in multiply.
|
|
void *f2(long N) {
|
|
return new int[N];
|
|
|
|
// ALL: [[UWO:%.*]] = call {{.*}} @llvm.umul.with.overflow
|
|
// ALL-NEXT: [[OVER:%.*]] = extractvalue {{.*}} [[UWO]], 1
|
|
// ALL-NEXT: [[SUM:%.*]] = extractvalue {{.*}} [[UWO]], 0
|
|
// ALL-NEXT: [[RESULT:%.*]] = select i1 [[OVER]], i32 -1, i32 [[SUM]]
|
|
// SANE-NEXT: call noalias noundef nonnull i8* @_Znaj(i32 noundef [[RESULT]])
|
|
// SANENOT-NEXT: call noundef nonnull i8* @_Znaj(i32 noundef [[RESULT]])
|
|
}
|
|
|
|
// ALL: declare noundef nonnull i8* @_Znaj(
|