mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 06:44:27 +00:00
8 lines
242 B
Text
8 lines
242 B
Text
RUN: llc -filetype=obj %p/Inputs/start.ll -o %t.foo.o
|
|
|
|
# Check -t
|
|
RUN: wasm-ld %t.foo.o -o %t.t.out.wasm -t 2>&1 | FileCheck %s
|
|
CHECK: {{.*}}.foo.o
|
|
|
|
# Check --trace alias
|
|
RUN: wasm-ld %t.foo.o -o %t.trace.out.wasm --trace 2>&1 | FileCheck %s
|