Mercurial > hg > CbC > CbC_llvm
view test/MC/MachO/linker-options.ll @ 122:36195a0db682
merging ( incomplete )
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 17 Nov 2017 20:32:31 +0900 |
parents | 803732b1fca8 |
children | c2174574ed3a |
line wrap: on
line source
; RUN: llc -O0 -mtriple=x86_64-apple-darwin -o - %s > %t ; RUN: FileCheck --check-prefix=CHECK-ASM < %t %s ; CHECK-ASM: .linker_option "-lz" ; CHECK-ASM-NEXT: .linker_option "-framework", "Cocoa" ; RUN: llc -O0 -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-readobj -macho-linker-options > %t ; RUN: FileCheck --check-prefix=CHECK-OBJ < %t %s ; CHECK-OBJ: Linker Options { ; CHECK-OBJ: Size: 16 ; CHECK-OBJ: Strings [ ; CHECK-OBJ: Value: -lz ; CHECK-OBJ: ] ; CHECK-OBJ: } ; CHECK-OBJ: Linker Options { ; CHECK-OBJ: Size: 32 ; CHECK-OBJ: Strings [ ; CHECK-OBJ: Value: -framework ; CHECK-OBJ: Value: Cocoa ; CHECK-OBJ: ] ; CHECK-OBJ: } ; CHECK-OBJ: Linker Options { ; CHECK-OBJ: Size: 24 ; CHECK-OBJ: Strings [ ; CHECK-OBJ: Value: -lmath ; CHECK-OBJ: ] ; CHECK-OBJ: } !0 = !{!"-lz"} !1 = !{!"-framework", !"Cocoa"} !2 = !{!"-lmath"} !llvm.linker.options = !{!0, !1, !2}