mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
Start reserving x18 by default on Android targets.
Differential Revision: https://reviews.llvm.org/D45588 llvm-svn: 340889
This commit is contained in:
parent
39be1b07d2
commit
d64262b5eb
@ -943,7 +943,8 @@ unsigned llvm::AArch64::parseArchVersion(StringRef Arch) {
|
||||
}
|
||||
|
||||
bool llvm::AArch64::isX18ReservedByDefault(const Triple &TT) {
|
||||
return TT.isOSDarwin() || TT.isOSFuchsia() || TT.isOSWindows();
|
||||
return TT.isAndroid() || TT.isOSDarwin() || TT.isOSFuchsia() ||
|
||||
TT.isOSWindows();
|
||||
}
|
||||
|
||||
struct GPUInfo {
|
||||
|
@ -3,6 +3,7 @@
|
||||
; RUN: llc -mtriple=aarch64-fuchsia -mattr=+reserve-x20 -o - %s | FileCheck %s --check-prefix=CHECK-RESERVE --check-prefix=CHECK-RESERVE-X20
|
||||
; RUN: llc -mtriple=aarch64-fuchsia -mattr=+reserve-x18,+reserve-x20 -o - %s | FileCheck %s --check-prefix=CHECK-RESERVE --check-prefix=CHECK-RESERVE-X18 --check-prefix=CHECK-RESERVE-X20
|
||||
; RUN: llc -mtriple=arm64-linux-gnu -o - %s | FileCheck %s
|
||||
; RUN: llc -mtriple=aarch64-linux-android -o - %s | FileCheck %s --check-prefix=CHECK-RESERVE --check-prefix=CHECK-RESERVE-X18
|
||||
; RUN: llc -mtriple=aarch64-fuchsia -o - %s | FileCheck %s --check-prefix=CHECK-RESERVE --check-prefix=CHECK-RESERVE-X18
|
||||
; RUN: llc -mtriple=aarch64-windows -o - %s | FileCheck %s --check-prefix=CHECK-RESERVE --check-prefix=CHECK-RESERVE-X18
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user