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/fast-isel-atomic.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/fast-isel-atomic.ll')
-rw-r--r-- | llvm/test/CodeGen/AArch64/fast-isel-atomic.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/AArch64/fast-isel-atomic.ll b/llvm/test/CodeGen/AArch64/fast-isel-atomic.ll index ec612616ae2..452129e4951 100644 --- a/llvm/test/CodeGen/AArch64/fast-isel-atomic.ll +++ b/llvm/test/CodeGen/AArch64/fast-isel-atomic.ll @@ -1,5 +1,5 @@ ; RUN: llc -mtriple=aarch64-- -O0 -fast-isel -fast-isel-abort=4 -verify-machineinstrs < %s | FileCheck %s -; RUN: llc -mtriple=aarch64-- -O0 -fast-isel=0 -verify-machineinstrs < %s | FileCheck %s +; RUN: llc -mtriple=aarch64-- -O0 -fast-isel=0 -global-isel=false -verify-machineinstrs < %s | FileCheck %s ; Note that checking SelectionDAG output isn't strictly necessary, but they ; currently match, so we might as well check both! Feel free to remove SDAG. |