]> granicus.if.org Git - clang/commit
Use CodegenOpts::less when creating a TargetMachine for clang `-O1`
authorMehdi Amini <mehdi.amini@apple.com>
Fri, 6 Jan 2017 20:52:30 +0000 (20:52 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Fri, 6 Jan 2017 20:52:30 +0000 (20:52 +0000)
commitd362589cd8fd6f05349502c2c310063f5adc935d
treefa2587882b6ed97382899be9b3263db48546aba3
parente781b71dd0fa9835aff199285aba0f83d47aed27
Use CodegenOpts::less when creating a TargetMachine for clang `-O1`

Summary:
Clang was initializing the TargetMachine with CodeGenOpt::Default
for O1. This change is aligning it on llc:

-O0: OptLevel = CodeGenOpt::None
-O1: OptLevel = CodeGenOpt::Less
-O2 -Os -Oz: OptLevel = CodeGenOpt::Default
-O3: OptLevel = CodeGenOpt::Aggressive

Reviewers: echristo, chandlerc

Subscribers: cfe-commits

Differential Revision: https://reviews.llvm.org/D28409

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@291276 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/BackendUtil.cpp