[clang] Initial implementation of P2719 (PR #113510)
Chuanqi Xu via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 24 22:06:13 PDT 2024
================
@@ -1,6 +1,9 @@
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c++20 -O2 \
// RUN: -Wno-coroutine-missing-unhandled-exception -emit-llvm %s -o - -disable-llvm-passes \
// RUN: | FileCheck %s
+// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c++20 -O2 \
+// RUN: -Wno-coroutine-missing-unhandled-exception -emit-llvm %s -o - -disable-llvm-passes -fcxx-type-aware-allocators \
+// RUN: | FileCheck %s
----------------
ChuanqiXu9 wrote:
If I read correctly, now we can have seperate allocators for different promise types, is it? If yes, can we add some test here?
https://github.com/llvm/llvm-project/pull/113510
More information about the cfe-commits
mailing list