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 19 20 21 22 23 24 25 26 27 28 29 30 | Test adding a member to a particular position RUN: touch %t.foo RUN: touch %t.bar RUN: rm -f %t.a RUN: llvm-ar rc %t.a %t.foo %t.bar RUN: touch %t.zed RUN: llvm-ar rca %t.foo %t.a %t.zed RUN: llvm-ar t %t.a | FileCheck %s CHECK: .foo CHECK-NEXT: .zed CHECK-NEXT: .bar RUN: rm -f %t.a RUN: llvm-ar rc %t.a %t.zed %t.foo %t.bar RUN: llvm-ar t %t.a | FileCheck --check-prefix=CHECK2 %s CHECK2: .zed CHECK2-NEXT: .foo CHECK2-NEXT: .bar RUN: llvm-ar rca %t.foo %t.a %t.zed RUN: llvm-ar t %t.a | FileCheck --check-prefix=CHECK3 %s CHECK3: .foo CHECK3-NEXT: .zed CHECK3-NEXT: .bar RUN: llvm-ar rc %t.a %t.zed RUN: llvm-ar t %t.a | FileCheck --check-prefix=CHECK3 %s |