]> granicus.if.org Git - clang/commitdiff
[NewPM] Run ubsan-coroutines test under the legacy pass manager only
authorLeonard Chan <leonardchan@google.com>
Tue, 20 Aug 2019 20:55:36 +0000 (20:55 +0000)
committerLeonard Chan <leonardchan@google.com>
Tue, 20 Aug 2019 20:55:36 +0000 (20:55 +0000)
The passes that lower the llvm.coro.* instrinsics have not yet been ported,
so only run under the legacy PM for now.

See https://bugs.llvm.org/show_bug.cgi?id=42867

Differential Revision: https://reviews.llvm.org/D66493

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@369442 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/ubsan-coroutines.cpp

index 7dbda6f45a9907b0a2b1a4bceb15333957bffa4f..8728c1511122b8b0ec7473f88592c1f0a195f86d 100644 (file)
@@ -1,6 +1,8 @@
 // This test merely verifies that emitting the object file does not cause a
 // crash when the LLVM coroutines passes are run.
-// RUN: %clang_cc1 -emit-obj -std=c++2a -fsanitize=null %s -o %t.o
+// PR42867: Disable this test for the new PM since the passes that lower the
+// llvm.coro.* intrinsics have not yet been ported.
+// RUN: %clang_cc1 -fno-experimental-new-pass-manager -emit-obj -std=c++2a -fsanitize=null %s -o %t.o
 
 namespace std::experimental {
 template <typename R, typename... T> struct coroutine_traits {