mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +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
24 lines
738 B
LLVM
24 lines
738 B
LLVM
; RUN: llc -filetype=obj %s -o - | obj2yaml | FileCheck %s
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
; Function that uses explict stack, and should generate a reference to
|
|
; __stack_pointer, along with the corresponding reloction entry.
|
|
define hidden void @foo() #0 {
|
|
entry:
|
|
alloca i32, align 4
|
|
ret void
|
|
}
|
|
|
|
; CHECK: - Type: IMPORT
|
|
; CHECK: Imports:
|
|
; CHECK: - Module: env
|
|
; CHECK: Field: __stack_pointer
|
|
; CHECK: Kind: GLOBAL
|
|
; CHECK: GlobalType: I32
|
|
; CHECK: GlobalMutable: true
|
|
; CHECK: - Type: CODE
|
|
; CHECK: Relocations:
|
|
; CHECK: - Type: R_WEBASSEMBLY_GLOBAL_INDEX_LEB
|
|
; CHECK: Index: 0
|