xref: /llvm-project/llvm/test/CodeGen/WebAssembly/only-data.ll (revision 73856247eef35f5336e485dc009842a5b991c421)
1; RUN: llc < %s --mtriple=wasm32-unknown-unknown -asm-verbose=false -mattr=+reference-types | FileCheck %s
2; Verify that types are output for external symbols, even in the absence of any defined functions
3
4;      CHECK: .type foo,@object
5; CHECK-NEXT: .section .data.foo,"",@
6; CHECK-NEXT: .globl foo
7@foo = local_unnamed_addr global ptr @bar, align 4
8
9; CHECK-LABEL: foo:
10;  CHECK-NEXT: .int32 bar
11;  CHECK-NEXT: .size foo, 4
12
13; CHECK: .functype bar (i32) -> (i32)
14declare i32 @bar(i32 noundef)
15