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 10 11 12 13 14 15 16 17 18 | RUN: rm -rf %t RUN: mkdir -p %t RUN: cd %t RUN: mkdir -p foo RUN: touch foo/test1.o RUN: touch foo/test2.o RUN: llvm-ar qcT foo/libtest.a foo/test1.o RUN: llvm-ar qcT foo/libtest.a foo/test1.o RUN: llvm-ar qcT foo/libtest.a foo/test2.o RUN: llvm-ar t foo/libtest.a | FileCheck --match-full-lines %s O (displaying member offsets) is ignored for thin archives. RUN: llvm-ar tO foo/libtest.a | FileCheck --match-full-lines %s CHECK: foo/test1.o CHECK: foo/test1.o CHECK: foo/test2.o |