You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
350 B
13 lines
350 B
// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-RTTI %s
|
|
// RUN: %clang_cc1 -E -fno-rtti %s -o - | FileCheck --check-prefix=CHECK-NO-RTTI %s
|
|
// RUN: %clang_cc1 -E -fno-rtti-data %s -o - | FileCheck --check-prefix=CHECK-NO-RTTI %s
|
|
|
|
#if __has_feature(cxx_rtti)
|
|
int foo();
|
|
#else
|
|
int bar();
|
|
#endif
|
|
|
|
// CHECK-RTTI: foo
|
|
// CHECK-NO-RTTI: bar
|