diff options
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/byval.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/byval.ll | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/byval.ll b/llvm/test/CodeGen/WebAssembly/byval.ll index c4f40359314..2aeeef724e7 100644 --- a/llvm/test/CodeGen/WebAssembly/byval.ll +++ b/llvm/test/CodeGen/WebAssembly/byval.ll @@ -10,14 +10,11 @@ target triple = "wasm32-unknown-unknown" %BigStruct = type { double, double, double, double, double, double, double, double, double, double, double, i8, i8, i8 } %EmptyStruct = type { } -%BigArray = type { [33 x i8] } - declare void @ext_func(%SmallStruct*) declare void @ext_func_empty(%EmptyStruct* byval) declare void @ext_byval_func(%SmallStruct* byval) declare void @ext_byval_func_align8(%SmallStruct* byval align 8) declare void @ext_byval_func_alignedstruct(%AlignedStruct* byval) -declare void @ext_byval_func_bigarray(%BigArray* byval) declare void @ext_byval_func_empty(%EmptyStruct* byval) ; CHECK-LABEL: byval_arg |