diff options
author | Eric Christopher <echristo@gmail.com> | 2019-11-26 20:28:52 -0800 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-11-26 20:28:52 -0800 |
commit | fd39b1bb20cec32c310ae9b6f1b4603c17a5f832 (patch) | |
tree | a4062ad8e399906271655df84f1d9d6327455370 /clang/test/CodeGen/arm-vfp16-arguments2.cpp | |
parent | 82b4dc0256d4ef27692308392766b2970249d9cf (diff) | |
download | bcm5719-llvm-fd39b1bb20cec32c310ae9b6f1b4603c17a5f832.tar.gz bcm5719-llvm-fd39b1bb20cec32c310ae9b6f1b4603c17a5f832.zip |
Revert "Revert "As a follow-up to my initial mail to llvm-dev here's a first pass at the O1 described there.""
This reapplies: 8ff85ed905a7306977d07a5cd67ab4d5a56fafb4
Original commit message:
As a follow-up to my initial mail to llvm-dev here's a first pass at the O1 described there.
This change doesn't include any change to move from selection dag to fast isel
and that will come with other numbers that should help inform that decision.
There also haven't been any real debuggability studies with this pipeline yet,
this is just the initial start done so that people could see it and we could start
tweaking after.
Test updates: Outside of the newpm tests most of the updates are coming from either
optimization passes not run anymore (and without a compelling argument at the moment)
that were largely used for canonicalization in clang.
Original post:
http://lists.llvm.org/pipermail/llvm-dev/2019-April/131494.html
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65410
This reverts commit c9ddb02659e3ece7a0d9d6b4dac7ceea4ae46e6d.
Diffstat (limited to 'clang/test/CodeGen/arm-vfp16-arguments2.cpp')
-rw-r--r-- | clang/test/CodeGen/arm-vfp16-arguments2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGen/arm-vfp16-arguments2.cpp b/clang/test/CodeGen/arm-vfp16-arguments2.cpp index 4f75971d832..e436a5ecd6a 100644 --- a/clang/test/CodeGen/arm-vfp16-arguments2.cpp +++ b/clang/test/CodeGen/arm-vfp16-arguments2.cpp @@ -1,12 +1,12 @@ // RUN: %clang_cc1 -triple armv7a--none-eabi -target-abi aapcs \ -// RUN: -mfloat-abi soft -target-feature +neon -emit-llvm -o - -O1 %s \ +// RUN: -mfloat-abi soft -target-feature +neon -emit-llvm -o - -O2 %s \ // RUN: | FileCheck %s --check-prefix=CHECK-SOFT // RUN: %clang_cc1 -triple armv7a--none-eabi -target-abi aapcs \ -// RUN: -mfloat-abi hard -target-feature +neon -emit-llvm -o - -O1 %s \ +// RUN: -mfloat-abi hard -target-feature +neon -emit-llvm -o - -O2 %s \ // RUN: | FileCheck %s --check-prefix=CHECK-HARD // RUN: %clang_cc1 -triple armv7a--none-eabi -target-abi aapcs \ // RUN: -mfloat-abi hard -target-feature +neon -target-feature +fullfp16 \ -// RUN: -emit-llvm -o - -O1 %s \ +// RUN: -emit-llvm -o - -O2 %s \ // RUN: | FileCheck %s --check-prefix=CHECK-FULL typedef float float32_t; |