This reverts commit aacfbb953eb705af2ecfeb95a6262818fa85dd92. Revert "Fix lit test failures in CodeGenCoroutines" This reverts commit 63fff0f5bffe20fa2c84a45a41161afa0043cb34.
8 lines
284 B
C++
8 lines
284 B
C++
// RUN: %clang_cc1 -emit-llvm -triple x86_64-linux-gnu -fnew-infallible -o - %s | FileCheck %s
|
|
|
|
// CHECK: call noalias nonnull i8* @_Znwm(i64 4)
|
|
|
|
// CHECK: ; Function Attrs: nobuiltin nounwind allocsize(0)
|
|
// CHECK-NEXT: declare nonnull i8* @_Znwm(i64)
|
|
int *new_infallible = new int;
|