mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-15 09:56:02 +00:00

.import_global is used by the ELF-based target and not needed by the wasm target. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319796 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
371 B
LLVM
18 lines
371 B
LLVM
; RUN: llc < %s -asm-verbose=false | FileCheck %s
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown-wasm"
|
|
|
|
; CHECK: .globl foo
|
|
; CHECK: .type foo,@function
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: .size foo,
|
|
define i32* @foo() {
|
|
ret i32* @bar
|
|
}
|
|
|
|
; CHECK: .type bar,@object
|
|
; CHECK: .globl bar
|
|
; CHECK: .size bar, 4
|
|
@bar = global i32 2
|