You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
; RUN: llc -filetype=obj %s -o %t.o
|
|
; RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/call-indirect.s -o %t2.o
|
|
; RUN: wasm-ld --export-dynamic -o %t.wasm %t2.o %t.o
|
|
; RUN: obj2yaml %t.wasm | FileCheck %s
|
|
; RUN: wasm-ld --export-dynamic -O2 -o %t-opt.wasm %t2.o %t.o
|
|
; RUN: obj2yaml %t-opt.wasm | FileCheck %s
|
|
; RUN: not wasm-ld --compress-relocations -o %t-compressed.wasm %t2.o %t.o 2>&1 | FileCheck %s -check-prefix=ERROR
|
|
; RUN: wasm-ld --export-dynamic --strip-debug --compress-relocations -o %t-compressed.wasm %t2.o %t.o
|
|
; RUN: obj2yaml %t-compressed.wasm | FileCheck %s -check-prefix=COMPRESS
|
|
|
|
target triple = "wasm32-unknown-unknown-wasm"
|
|
|
|
define i32 @foo() {
|
|
entry:
|
|
ret i32 2
|
|
}
|
|
|
|
define void @_start() local_unnamed_addr {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; ERROR: wasm-ld: error: --compress-relocations is incompatible with output debug information. Please pass --strip-debug or --strip-all
|
|
|
|
; CHECK: Body: 28028088808000118080808000001A28028488808000118180808000001A0B
|
|
; COMPRESS: Body: 280280081100001A280284081101001A0B
|