brintos

brintos / llvm-project-archived public Read only

0
0
Text · 494 B · eff0fdc Raw
12 lines · plain
1# RUN: llvm-as %p/Inputs/armv7-ios.ll -o %t-armv7.o2# RUN: llvm-as %p/Inputs/arm64-ios.ll -o %t-arm64.o3 4# RUN: llvm-lipo %t-armv7.o %t-arm64.o -create -output %t-universal.o5# RUN: llvm-lipo %t-universal.o -thin arm64 -output %t-arm64.out6# RUN: opt -S %t-arm64.out | FileCheck --check-prefix=ARM64 %s7# RUN: llvm-lipo %t-universal.o -thin armv7 -output %t-armv7.out8# RUN: opt -S %t-armv7.out | FileCheck --check-prefix=ARMV7 %s9 10# ARM64: arm64-apple-ios8.0.011# ARMV7: thumbv7-apple-ios8.0.012