forked from OSchip/llvm-project
gcc comptability: silent -fdefer-pop & -fno-defer-pop
Reviewers: rafael, rnk Reviewed By: rnk Subscribers: rnk, cfe-commits Differential Revision: http://reviews.llvm.org/D4357 llvm-svn: 212327
This commit is contained in:
parent
8d37ae4471
commit
0ccfb3a144
|
@ -469,6 +469,8 @@ def fexceptions : Flag<["-"], "fexceptions">, Group<f_Group>, Flags<[CC1Option]>
|
|||
def : Flag<["-"], "fexpensive-optimizations">, Group<clang_ignored_f_Group>;
|
||||
def : Flag<["-"], "fno-expensive-optimizations">, Group<clang_ignored_f_Group>;
|
||||
def fextdirs_EQ : Joined<["-"], "fextdirs=">, Group<f_Group>;
|
||||
def : Flag<["-"], "fdefer-pop">, Group<clang_ignored_f_Group>;
|
||||
def : Flag<["-"], "fno-defer-pop">, Group<clang_ignored_f_Group>;
|
||||
def : Flag<["-"], "fextended-identifiers">, Group<clang_ignored_f_Group>;
|
||||
def : Flag<["-"], "fno-extended-identifiers">, Group<f_Group>, Flags<[Unsupported]>;
|
||||
def fhosted : Flag<["-"], "fhosted">, Group<f_Group>;
|
||||
|
|
|
@ -147,6 +147,7 @@
|
|||
// RUN: -fivopts -fno-ivopts \
|
||||
// RUN: -fnon-call-exceptions -fno-non-call-exceptions \
|
||||
// RUN: -fpermissive -fno-permissive \
|
||||
// RUN: -fdefer-pop -fno-defer-pop \
|
||||
// RUN: -fprefetch-loop-arrays -fno-prefetch-loop-arrays \
|
||||
// RUN: -fprofile-correction -fno-profile-correction \
|
||||
// RUN: -fprofile-dir=bar \
|
||||
|
|
Loading…
Reference in New Issue