mirror of
https://github.com/opnsense/src.git
synced 2026-03-26 20:53:08 -04:00
9 lines
538 B
C++
9 lines
538 B
C++
// RUN: %clang -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-CORO %s
|
|
// RUN: %clang -fcoroutines-ts -fno-coroutines-ts -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-CORO %s
|
|
// RUN: %clang -fno-coroutines-ts -### %s 2>&1 | FileCheck -check-prefix=CHECK-NO-CORO %s
|
|
// CHECK-NO-CORO-NOT: -fcoroutines-ts
|
|
|
|
// RUN: %clang -fcoroutines-ts -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-CORO %s
|
|
// RUN: %clang -fno-coroutines-ts -fcoroutines-ts -### %s 2>&1 | FileCheck -check-prefix=CHECK-HAS-CORO %s
|
|
// CHECK-HAS-CORO: -fcoroutines-ts
|
|
|