brintos

brintos / llvm-project-archived public Read only

0
0
Text · 543 B · 30d21bc Raw
10 lines · plain
1# REQUIRES: x86-registered-target && aarch64-registered-target2# RUN: llvm-as %p/Inputs/arm64-asm.ll -o %t-arm64-asm.o3# RUN: llvm-as %p/Inputs/x86_64-asm.ll -o %t-x86_64-asm.o4 5# RUN: llvm-lipo %t-arm64-asm.o %t-x86_64-asm.o -create -output %t-universal.o6# RUN: llvm-lipo %t-arm64-asm.o -arch x86_64 %t-x86_64-asm.o -create -output %t-universal-1.o7# RUN: cmp %t-universal.o %t-universal-1.o8# RUN: llvm-lipo -arch arm64 %t-arm64-asm.o -arch x86_64 %t-x86_64-asm.o -create -output %t-universal-2.o9# RUN: cmp %t-universal.o %t-universal-2.o10