]> granicus.if.org Git - clang/commit
Using an invalid -O falls back on -O3 instead of an error
authorSylvestre Ledru <sylvestre@debian.org>
Fri, 15 Nov 2013 15:39:14 +0000 (15:39 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Fri, 15 Nov 2013 15:39:14 +0000 (15:39 +0000)
commiteb4d7c3fceed6c6e4151489c0572cff36500db78
tree1d459aa7bc8b949ec304c9d645d7f6609dd6b403
parent71940883821bd55028f4c2773de10a532c1d8aea
Using an invalid -O falls back on -O3 instead of an error

Summary:
Currently with clang:
$ clang -O20 foo.c
error: invalid value '20' in '-O20'

With the patch:
$ clang -O20 foo.c
warning: optimization level '-O20' is unsupported; using '-O3' instead.
1 warning generated.

This matches the gcc behavior (with a warning added)

Pass all tests:
Testing: 0 .. 10.. 20.. 30.. 40.. 50.. 60.. 70.. 80.. 90..
Testing Time: 94.14s
  Expected Passes    : 6721
  Expected Failures  : 20
  Unsupported Tests  : 17

(which was not the case of http://llvm-reviews.chandlerc.com/D2125)

Reviewers: chandlerc, rafael, rengolin, hfinkel

Reviewed By: rengolin

CC: cfe-commits
Differential Revision: http://llvm-reviews.chandlerc.com/D2152

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194817 91177308-0d34-0410-b5e6-96231b3b80d8
docs/ReleaseNotes.rst
include/clang/Basic/DiagnosticDriverKinds.td
include/clang/Basic/DiagnosticGroups.td
lib/Driver/Tools.cpp
lib/Frontend/CompilerInvocation.cpp
test/Driver/clang_f_opts.c
test/Driver/invalid-o-level.c