brintos

brintos / llvm-project-archived public Read only

0
0
Text · 927 B · 23ecf25 Raw
22 lines · plain
1REQUIRES: mips-registered-target2 3RUN: rm -rf %t && mkdir -p %t4 5RUN: llc -mtriple=i386-windows-coff -filetype=obj -o %t/i386.obj %S/Inputs/i386.ll6RUN: llvm-as %S/Inputs/i386.ll -o %t/i386.bc7RUN: llvm-lib %t/i386.obj %t/i386.bc /out:%t/i386.lib8RUN: llvm-objdump -h %t/i386.lib | FileCheck %s --check-prefix=I3869I386: file format coff-i38610 11RUN: llc -mtriple=x86_64-windows-coff -filetype=obj -o %t/x86_64.obj %S/Inputs/x86_64.ll12RUN: llvm-as %S/Inputs/x86_64.ll -o %t/x86_64.bc13RUN: llvm-lib %t/x86_64.obj %t/x86_64.bc /out:%t/x86_64.lib14RUN: llvm-objdump -h %t/x86_64.lib | FileCheck %s --check-prefix=X86_6415X86_64: file format coff-x86-6416 17RUN: llc -mtriple=mipsel-windows-coff -filetype=obj -o %t/mips.obj %S/Inputs/mips.ll18RUN: llvm-as %S/Inputs/mips.ll -o %t/mips.bc19RUN: llvm-lib %t/mips.obj %t/mips.bc /out:%t/mips.lib20RUN: llvm-objdump -h %t/mips.lib | FileCheck %s --check-prefix=MIPS21MIPS: file format coff-mips22