1RUN: llc -filetype=obj %p/Inputs/start.ll -o %t.start.o
2RUN: wasm-ld --strip-all -o %t.wasm %t.start.o
3RUN: obj2yaml %t.wasm | FileCheck %s
4
5# Test alias -s
6RUN: wasm-ld -s -o %t.wasm %t.start.o
7RUN: obj2yaml %t.wasm | FileCheck %s
8
9# Check that there is no name section
10CHECK-NOT:   Name:    name
11