mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-23 19:59:57 +00:00
5bfb1b8c4e
Initialize all AArch64-specific passes in the TargetMachine so they can be run by llc. This can lead to conflicts in opt with some command line options that share the same name as the pass, so I took this opportunity to do some cleanups: * rename all relevant command line options from "aarch64-blah" to "aarch64-enable-blah" and update the tests accordingly * run clang-format on their declarations * move all these declarations to a common place (the TargetMachine) as opposed to having them scattered around (AArch64BranchRelaxation and AArch64AddressTypePromotion were the only offenders) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277322 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
380 B
LLVM
16 lines
380 B
LLVM
; RUN: llc -mtriple=arm64-apple-ios7.0.0 -aarch64-enable-dead-defs=false < %s | FileCheck %s
|
|
|
|
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
define i32 @test1() #0 {
|
|
%tmp1 = alloca i8
|
|
%tmp2 = icmp eq i8* %tmp1, null
|
|
%tmp3 = zext i1 %tmp2 to i32
|
|
|
|
ret i32 %tmp3
|
|
|
|
; CHECK-LABEL: test1
|
|
; CHECK: adds {{x[0-9]+}}, sp, #15
|
|
}
|