reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 | ## Show that the -a/--all switch is accepted. GNU strings checks specific object ## file sections unless --all is specified. llvm-strings just looks at the entire ## file, so this option is silently ignored. RUN: echo abcd | llvm-strings -a | FileCheck %s RUN: echo abcd | llvm-strings --all | FileCheck %s CHECK: abcd |