The data layout strings do not have any effect on llc tests and will become misleadingly out of date as we continue to update the canonical data layout, so remove them from the tests. Differential Revision: https://reviews.llvm.org/D105842
17 lines
311 B
LLVM
17 lines
311 B
LLVM
; RUN: llc < %s -asm-verbose=false | FileCheck %s
|
|
|
|
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
|