Lines Matching +full:llvm +full:- +full:test
2 # RUN: rm -rf %t; split-file %s %t
4 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/test.s -o %t/test.o
5 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/same-size.s -o %t/same-size.o
6 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/smaller-size.s -o %t/smaller-size.o
7 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/zero-align.s -o %t/zero-align.o
8 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/zero-align-round-up.s -o %t/zero-align-…
12 # RUN: %lld %t/test.o %t/smaller-size.o -order_file %t/order -o %t/test
13 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=8
14 # RUN: %lld %t/smaller-size.o %t/test.o -order_file %t/order -o %t/test
15 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=8
18 ## command-line argument list.
19 # RUN: %lld %t/test.o %t/same-size.o -order_file %t/order -o %t/test
20 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=16
21 # RUN: %lld %t/same-size.o %t/test.o -order_file %t/order -o %t/test
22 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=8
24 # RUN: %lld %t/test.o %t/zero-align.o -order_file %t/order -o %t/test
25 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=16
26 # RUN: %lld %t/zero-align.o %t/test.o -order_file %t/order -o %t/test
27 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=16
29 # RUN: %lld %t/test.o %t/zero-align-round-up.o -order_file %t/order -o %t/test
30 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=16
31 # RUN: %lld %t/zero-align-round-up.o %t/test.o -order_file %t/order -o %t/test
32 # RUN: llvm-objdump --section-headers --syms %t/test | FileCheck %s -D#ALIGN=16
34 # CHECK-LABEL: Sections:
35 # CHECK: __common {{[0-9a-f]+}} [[#%.16x, COMMON_START:]] BSS
37 # CHECK-LABEL: SYMBOL TABLE:
38 # CHECK-DAG: [[#%.16x, COMMON_START]] g O __DATA,__common _check_size
39 # CHECK-DAG: [[#%.16x, COMMON_START + 2]] g O __DATA,__common _end_marker
40 # CHECK-DAG: [[#%.16x, COMMON_START + ALIGN]] g O __DATA,__common _check_alignment
42 #--- order
49 #--- smaller-size.s
53 #--- same-size.s
57 #--- zero-align.s
62 #--- zero-align-round-up.s
68 #--- test.s