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.
11 lines
334 B
11 lines
334 B
RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/start.s -o %t.start.o
|
|
RUN: wasm-ld --strip-debug -o %t.wasm %t.start.o
|
|
RUN: obj2yaml %t.wasm | FileCheck %s
|
|
|
|
# Test alias -S
|
|
RUN: wasm-ld -S -o %t.wasm %t.start.o
|
|
RUN: obj2yaml %t.wasm | FileCheck %s
|
|
|
|
# Check that there is no name section
|
|
CHECK-NOT: Name: name
|