[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / llvm-lipo / create-default-alignment.test
blob813230a7e3c4aa73d9e5e1acdd9ad7adfadc0ee8
1 # RUN: yaml2obj %p/Inputs/i386-slice.yaml > %t-i386.o
2 # RUN: yaml2obj %p/Inputs/x86_64-slice.yaml > %t-x86_64.o
4 # RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal-llvm.o
6 # RUN: yaml2obj %p/Inputs/i386-x86_64-universal.yaml > %t-universal.o
7 # RUN: cmp %t-universal-llvm.o %t-universal.o
9 # RUN: yaml2obj %p/Inputs/armv7-slice.yaml > %t-armv7.o
10 # RUN: yaml2obj %p/Inputs/arm64-slice.yaml > %t-arm64.o
12 # RUN: llvm-lipo %t-arm64.o %t-armv7.o %t-universal.o -create -output %t-universal-2.o
13 # RUN: llvm-lipo %t-universal-2.o -thin x86_64 -output %t-x86_64_extracted.o
14 # RUN: cmp %t-x86_64_extracted.o %t-x86_64.o
15 # RUN: llvm-lipo %t-universal-2.o -thin armv7 -output %t-armv7-extracted.o
16 # RUN: cmp %t-armv7-extracted.o %t-armv7.o
18 # RUN: llvm-objdump %t-universal-2.o -m --universal-headers | FileCheck %s
19 # CHECK: fat_magic FAT_MAGIC
20 # CHECK: nfat_arch 4
21 # CHECK: architecture i386
22 # CHECK: offset 4096
23 # CHECK: align 2^12 (4096)
24 # CHECK: architecture x86_64
25 # CHECK: offset 8192
26 # CHECK: align 2^12 (4096)
27 # CHECK: architecture armv7
28 # CHECK: offset 16384
29 # CHECK: align 2^14 (16384)
30 # CHECK: architecture arm64
31 # CHECK: offset 32768
32 # CHECK: align 2^14 (16384)