hanchenye-llvm-project/clang/test/CodeGenCXX/operator-new.cpp

18 lines
466 B
C++

// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -o %t-1.ll %s
// RUN: FileCheck -check-prefix SANE --input-file=%t-1.ll %s
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -emit-llvm -fno-assume-sane-operator-new -o %t-2.ll %s
// RUN: FileCheck -check-prefix SANENOT --input-file=%t-2.ll %s
class teste {
int A;
public:
teste() : A(2) {}
};
void f1() {
// CHECK-SANE: declare noalias i8* @_Znwj(
// CHECK-SANENOT: declare i8* @_Znwj(
new teste();
}