repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
WebAssembly
/
globl.ll
blob
23a99330fcfc15e6a5de5bada60848274e8de83d
1
; RUN: llc < %s -asm-verbose=false | FileCheck %s
2
3
target triple = "wasm32-unknown-unknown"
4
5
; CHECK: .globl foo
6
; CHECK: .type foo,@function
7
; CHECK-LABEL: foo:
8
; CHECK: .size foo,
9
define i32* @foo() {
10
ret i32* @bar
11
}
12
13
; CHECK: .type bar,@object
14
; CHECK: .globl bar
15
; CHECK: .size bar, 4
16
@bar = global i32 2