Files
clang-p2996/llvm/test/MC/WebAssembly/custom-code-section.ll
Sam Clegg 8cbfbd6d12 [WebAssembly] MC: Use inline triple in test bitcode files
This matches the CodeGen tests and makes it a little easy
to run these from the command line manually.

Differential Revision: https://reviews.llvm.org/D42440

llvm-svn: 323275
2018-01-23 23:03:47 +00:00

12 lines
265 B
LLVM

; RUN: llc -O2 -filetype=obj %s -o %t.o
target triple = "wasm32-unknown-unknown-wasm"
; Wasm silently ignores custom sections for code.
; We had a bug where this cause a crash
define hidden void @call_indirect() section "some_section_name" {
entry:
ret void
}