diff options
| author | Mehdi Amini <joker.eph@gmail.com> | 2017-05-29 05:38:20 +0000 |
|---|---|---|
| committer | Mehdi Amini <joker.eph@gmail.com> | 2017-05-29 05:38:20 +0000 |
| commit | 6aa9e9b41a578cc086684d76e70660dfb162d421 (patch) | |
| tree | 09d187acc014aebd92a2972841fb43612adbb37d /clang/test/CodeGen/aarch64-neon-misc.c | |
| parent | e161ced16aff690f990be0729019c7aa2cd55eb6 (diff) | |
| download | bcm5719-llvm-6aa9e9b41a578cc086684d76e70660dfb162d421.tar.gz bcm5719-llvm-6aa9e9b41a578cc086684d76e70660dfb162d421.zip | |
IRGen: Add optnone attribute on function during O0
Amongst other, this will help LTO to correctly handle/honor files
compiled with O0, helping debugging failures.
It also seems in line with how we handle other options, like how
-fnoinline adds the appropriate attribute as well.
Differential Revision: https://reviews.llvm.org/D28404
llvm-svn: 304127
Diffstat (limited to 'clang/test/CodeGen/aarch64-neon-misc.c')
| -rw-r--r-- | clang/test/CodeGen/aarch64-neon-misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/aarch64-neon-misc.c b/clang/test/CodeGen/aarch64-neon-misc.c index 28fc1fe1e3f..0772d4fc677 100644 --- a/clang/test/CodeGen/aarch64-neon-misc.c +++ b/clang/test/CodeGen/aarch64-neon-misc.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -triple arm64-none-linux-gnu -target-feature +neon \ -// RUN: -fallow-half-arguments-and-returns -emit-llvm -o - %s \ +// RUN: -disable-O0-optnone -fallow-half-arguments-and-returns -emit-llvm -o - %s \ // RUN: | opt -S -mem2reg | FileCheck %s // Test new aarch64 intrinsics and types |

