reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 | # Show that llvm-cxxfilt can handle empty lines in the input. RUN: echo "" > %t RUN: echo "_Z3foov" >> %t RUN: echo "" >> %t RUN: llvm-cxxfilt < %t | FileCheck %s CHECK: {{^$}} CHECK-NEXT: foo() CHECK-EMPTY: |