[InstCombine] Signed saturation patterns
[llvm-core.git] / test / tools / llvm-lipo / create-archive-input.test
blob8f4307e9c830316b059d16b999821e95a6db4647
1 # RUN: yaml2obj %p/Inputs/i386-slice.yaml > %t-i386.o
2 # RUN: yaml2obj %p/Inputs/x86_64-slice.yaml > %t-x86_64.o
3 # RUN: yaml2obj %p/Inputs/i386-x86_64-universal.yaml > %t-universal.o
5 # RUN: llvm-ar cr %t.empty.a
6 # RUN: not llvm-lipo %t.empty.a -create -output /dev/null 2>&1 | FileCheck --check-prefix=EMPTY-ARCHIVE %s
8 # RUN: llvm-ar cr %t.different_architectures.a %t-i386.o %t-x86_64.o
9 # RUN: not llvm-lipo %t.different_architectures.a -create -output /dev/null 2>&1 | FileCheck --check-prefix=ARCHIVE-WITH-DIFFERENT-ARCHS %s
11 # RUN: llvm-ar cr %t.contains_fat_binary.a %t-universal.o 
12 # RUN: not llvm-lipo %t.contains_fat_binary.a -create -output /dev/null 2>&1 | FileCheck --check-prefix=ARCHIVE-WITH-FAT-BINARY %s
14 # RUN: llvm-ar cr %t-i386-lib.a %t-i386.o
15 # RUN: llvm-lipo %t-i386-lib.a %t-x86_64.o -create -output %t-i386-x86_64-universal.o
16 # RUN: llvm-lipo %t-i386-x86_64-universal.o -info | FileCheck --check-prefix=INFO-i386-x86_64 %s
17 # RUN: llvm-lipo %t-i386-x86_64-universal.o -thin i386 -output %t-extracted-i386-lib.a
18 # RUN: cmp %t-extracted-i386-lib.a %t-i386-lib.a
19 # RUN: llvm-lipo %t-i386-x86_64-universal.o -thin x86_64 -output %t-extracted-x86_64.o
20 # RUN: cmp %t-extracted-x86_64.o %t-x86_64.o
22 # EMPTY-ARCHIVE: empty archive
23 # ARCHIVE-WITH-DIFFERENT-ARCHS: all members must match
24 # ARCHIVE-WITH-FAT-BINARY: fat file (not allowed in an archive)
26 # INFO-i386-x86_64: i386 x86_64