mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-22 19:55:47 -04:00
8d1235ff26
Summary: The final -wasm component has been the default for some time now. Subscribers: jfb, dschuff, jgravelle-google, eraman, aheejin, JDevlieghere, sunfish, llvm-commits Differential Revision: https://reviews.llvm.org/D46342 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@332007 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
260 B
LLVM
12 lines
260 B
LLVM
; RUN: llc -O2 -filetype=obj %s -o %t.o
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
; 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
|
|
}
|