diff options
author | Eric Christopher <echristo@gmail.com> | 2019-11-25 16:33:19 -0800 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2019-11-25 17:16:46 -0800 |
commit | 8ff85ed905a7306977d07a5cd67ab4d5a56fafb4 (patch) | |
tree | a52bc11417f5a8598b2cb9dd59a08bffeeea1fb3 /clang/test/CodeGen/2008-07-30-implicit-initialization.c | |
parent | 3687ddef2c8274b926907f63d7762cc98325459e (diff) | |
download | bcm5719-llvm-8ff85ed905a7306977d07a5cd67ab4d5a56fafb4.tar.gz bcm5719-llvm-8ff85ed905a7306977d07a5cd67ab4d5a56fafb4.zip |
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
Diffstat (limited to 'clang/test/CodeGen/2008-07-30-implicit-initialization.c')
-rw-r--r-- | clang/test/CodeGen/2008-07-30-implicit-initialization.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/2008-07-30-implicit-initialization.c b/clang/test/CodeGen/2008-07-30-implicit-initialization.c index e77c70a140f..f2621f4560e 100644 --- a/clang/test/CodeGen/2008-07-30-implicit-initialization.c +++ b/clang/test/CodeGen/2008-07-30-implicit-initialization.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple i386-unknown-unknown -O1 -emit-llvm -o - %s | FileCheck %s +// RUN: %clang_cc1 -triple i386-unknown-unknown -O2 -emit-llvm -o - %s | FileCheck %s // CHECK-LABEL: define i32 @f0() // CHECK: ret i32 0 // CHECK-LABEL: define i32 @f1() |