Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Driver / omit-rtti-component-flag.cpp
blob54b88a8775ef3d22ebc2a880bc916c64695776e6
1 // RUN: %clangxx --target=aarch64-unknown-linux -fno-rtti -Xclang -fexperimental-omit-vtable-rtti -c %s -### 2>&1 | FileCheck %s --check-prefix=OMIT
2 // RUN: %clangxx --target=aarch64-unknown-linux -fno-rtti -Xclang -fno-experimental-omit-vtable-rtti -c %s -### 2>&1 | FileCheck %s --check-prefix=NO-OMIT
4 // OMIT: "-fexperimental-omit-vtable-rtti"
5 // NO-OMIT-NOT: "-fexperimental-omit-vtable-rtti"