mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
1db9a50c96
Summary: This is the llvm part of the initial implementation to support Windows ARM64 COFF format. I will gradually add more functionality in subsequent patches. Reviewers: ruiu, rnk, t.p.northover, compnerd Reviewed By: ruiu, compnerd Subscribers: aemerson, mgorny, javed.absar, llvm-commits, kristof.beyls Differential Revision: https://reviews.llvm.org/D34705 llvm-svn: 306490
9 lines
119 B
LLVM
9 lines
119 B
LLVM
; RUN: llc -mtriple aarch64-windows < %s | FileCheck %s
|
|
|
|
define i32 @foo() {
|
|
entry:
|
|
ret i32 1
|
|
}
|
|
|
|
; CHECK: .globl foo
|