1RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/start.s -o %t.start.o 2RUN: wasm-ld --strip-debug -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