mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +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
18 lines
366 B
LLVM
18 lines
366 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"
|
|
|
|
; 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
|