mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
753387b3f6
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 llvm-svn: 332007
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
|
|
}
|