Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / cxx1z-noexcept-function-type.cpp
blobd2d06fbd26548f9517d821bc117c31829d808c63
1 // RUN: %clang_cc1 -fexceptions -fcxx-exceptions -std=c++1z -emit-llvm %s -o - -triple x86_64-linux-gnu | FileCheck %s
3 // CHECK-LABEL: define {{.*}} @_Z11builtin_newm(
4 // CHECK: call {{.*}} @_Znwm(
5 void *builtin_new(unsigned long n) { return __builtin_operator_new(n); }
7 // CHECK-LABEL: define {{.*}} @_Z14builtin_deletePv(
8 // CHECK: call {{.*}} @_ZdlPv(
9 void builtin_delete(void *p) { return __builtin_operator_delete(p); }