mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
f009a961ca
Unified EmitTextAttribute for both Asm and Obj emission (.cpu only) Added necessary cortex-A8 related attrs for codegen compat tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124995 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
336 B
LLVM
14 lines
336 B
LLVM
; RUN: llc < %s -mtriple=arm-linux-gnueabi | FileCheck %s
|
|
; This tests that MC/asm header conversion is smooth
|
|
;
|
|
; CHECK: .syntax unified
|
|
; CHECK: .eabi_attribute 20, 1
|
|
; CHECK: .eabi_attribute 21, 1
|
|
; CHECK: .eabi_attribute 23, 3
|
|
; CHECK: .eabi_attribute 24, 1
|
|
; CHECK: .eabi_attribute 25, 1
|
|
|
|
define i32 @f(i64 %z) {
|
|
ret i32 0
|
|
}
|