mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
4d3b657b4e
This matches the CodeGen tests and makes it a little easy to run these from the command line manually. Differential Revision: https://reviews.llvm.org/D42440 llvm-svn: 323275
49 lines
919 B
LLVM
49 lines
919 B
LLVM
; RUN: llc -filetype=obj %s -o - | llvm-readobj -s | FileCheck %s
|
|
|
|
target triple = "wasm32-unknown-unknown-wasm"
|
|
|
|
; external function
|
|
declare i32 @a()
|
|
|
|
; global data
|
|
@b = global i32 3, align 4
|
|
|
|
; local function
|
|
define i32 @f1() {
|
|
entry:
|
|
%tmp1 = call i32 @a()
|
|
ret i32 %tmp1
|
|
}
|
|
|
|
; CHECK: Format: WASM
|
|
; CHECK: Arch: wasm32
|
|
; CHECK: AddressSize: 32bit
|
|
; CHECK: Sections [
|
|
; CHECK: Section {
|
|
; CHECK: Type: TYPE (0x1)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: IMPORT (0x2)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: FUNCTION (0x3)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: GLOBAL (0x6)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: EXPORT (0x7)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: CODE (0xA)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: DATA (0xB)
|
|
; CHECK: }
|
|
; CHECK: Section {
|
|
; CHECK: Type: CUSTOM (0x0)
|
|
; CHECK: Name: reloc.CODE
|
|
; CHECK: }
|
|
; CHECK:]
|
|
|