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.
14 lines
324 B
14 lines
324 B
# RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown -o %t.o %s
|
|
# RUN: wasm-ld -o %t.wasm %t.o
|
|
# RUN: llvm-readobj --file-headers %t.wasm | FileCheck %s
|
|
|
|
.globl _start
|
|
_start:
|
|
.functype _start () -> ()
|
|
end_function
|
|
|
|
# CHECK: Format: WASM
|
|
# CHECK: Arch: wasm32
|
|
# CHECK: AddressSize: 32bit
|
|
# CHECK: Version: 0x1
|