diff options
author | Amara Emerson <aemerson@apple.com> | 2018-01-02 16:30:47 +0000 |
---|---|---|
committer | Amara Emerson <aemerson@apple.com> | 2018-01-02 16:30:47 +0000 |
commit | 854d10d10bf5ae315fac43d37f84626d7a9c5edf (patch) | |
tree | fedf15410244258fca600aeab7ef71db382c113d /llvm/test/CodeGen/AArch64/swiftself.ll | |
parent | 0d0f1ff719c3b92a8bbda4327e8dd6e9cf936a09 (diff) | |
download | bcm5719-llvm-854d10d10bf5ae315fac43d37f84626d7a9c5edf.tar.gz bcm5719-llvm-854d10d10bf5ae315fac43d37f84626d7a9c5edf.zip |
[AArch64][GlobalISel] Enable GlobalISel at -O0 by default
Tests updated to explicitly use fast-isel at -O0 instead of implicitly.
This change also allows an explicit -fast-isel option to override an
implicitly enabled global-isel. Otherwise -fast-isel would have no effect at -O0.
Differential Revision: https://reviews.llvm.org/D41362
llvm-svn: 321655
Diffstat (limited to 'llvm/test/CodeGen/AArch64/swiftself.ll')
-rw-r--r-- | llvm/test/CodeGen/AArch64/swiftself.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/AArch64/swiftself.ll b/llvm/test/CodeGen/AArch64/swiftself.ll index 33a49198430..f19c852cb9b 100644 --- a/llvm/test/CodeGen/AArch64/swiftself.ll +++ b/llvm/test/CodeGen/AArch64/swiftself.ll @@ -1,5 +1,5 @@ ; RUN: llc -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck --check-prefix=CHECK --check-prefix=OPT %s -; RUN: llc -O0 -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck %s +; RUN: llc -O0 -fast-isel -verify-machineinstrs -mtriple=aarch64-apple-ios -o - %s | FileCheck %s ; RUN: llc -verify-machineinstrs -mtriple=aarch64-unknown-linux-gnu -o - %s | FileCheck --check-prefix=CHECK --check-prefix=OPT %s ; Parameter with swiftself should be allocated to x20. |