mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
7822e6aab5
Small test for sanity check of resulting ARM .s file. Tested against -r115129. llvm-svn: 115133
14 lines
361 B
LLVM
14 lines
361 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
|
|
; This tests that MC/asm header conversion is smooth
|
|
;
|
|
; CHECK: .syntax unified
|
|
; CHECK-NEXT: .eabi_attribute 20, 1
|
|
; CHECK-NEXT: .eabi_attribute 21, 1
|
|
; CHECK-NEXT: .eabi_attribute 23, 3
|
|
; CHECK-NEXT: .eabi_attribute 24, 1
|
|
; CHECK-NEXT: .eabi_attribute 25, 1
|
|
|
|
define i32 @f(i64 %z) {
|
|
ret i32 0
|
|
}
|