mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
b55dcfe47f
We were only handling the 'a' and 'b' options during moves before. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186721 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
270 B
Plaintext
14 lines
270 B
Plaintext
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
|