forked from OSchip/llvm-project
Rename -cc1 option '-warn-security-syntactic' to '-analyzer-check-security-syntactic'.
llvm-svn: 95342
This commit is contained in:
parent
80fadb5069
commit
ec5b3d45c1
|
@ -38,7 +38,7 @@ def analysis_CFGView : Flag<"-cfg-view">,
|
|||
HelpText<"View Control-Flow Graphs using GraphViz">;
|
||||
def analysis_DisplayLiveVariables : Flag<"-dump-live-variables">,
|
||||
HelpText<"Print results of live variable analysis">;
|
||||
def analysis_SecuritySyntacticChecks : Flag<"-warn-security-syntactic">,
|
||||
def analysis_SecuritySyntacticChecks : Flag<"-analyzer-check-security-syntactic">,
|
||||
HelpText<"Perform quick security checks that require no data flow">;
|
||||
def analysis_WarnDeadStores : Flag<"-warn-dead-stores">,
|
||||
HelpText<"Warn about stores to dead variables">;
|
||||
|
|
|
@ -24,7 +24,7 @@ ANALYSIS(CFGView, "cfg-view",
|
|||
ANALYSIS(DisplayLiveVariables, "dump-live-variables",
|
||||
"Print results of live variable analysis", Code)
|
||||
|
||||
ANALYSIS(SecuritySyntacticChecks, "warn-security-syntactic",
|
||||
ANALYSIS(SecuritySyntacticChecks, "analyzer-check-security-syntactic",
|
||||
"Perform quick security checks that require no data flow",
|
||||
Code)
|
||||
|
||||
|
|
|
@ -702,7 +702,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
|
|||
// Add default argument set.
|
||||
if (!Args.hasArg(options::OPT__analyzer_no_default_checks)) {
|
||||
CmdArgs.push_back("-warn-dead-stores");
|
||||
CmdArgs.push_back("-warn-security-syntactic");
|
||||
CmdArgs.push_back("-analyzer-check-security-syntactic");
|
||||
CmdArgs.push_back("-checker-cfref");
|
||||
CmdArgs.push_back("-analyzer-eagerly-assume");
|
||||
CmdArgs.push_back("-warn-objc-methodsigs");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -analyze -warn-security-syntactic %s -verify
|
||||
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -analyze -analyzer-check-security-syntactic %s -verify
|
||||
|
||||
// This file complements 'security-syntax-checks.m', but tests that we omit
|
||||
// specific checks on platforms where they don't make sense.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: %clang_cc1 -triple i386-apple-darwin10 -analyze -warn-security-syntactic %s -verify
|
||||
// RUN: %clang_cc1 -triple i386-apple-darwin10 -analyze -analyzer-check-security-syntactic %s -verify
|
||||
|
||||
// <rdar://problem/6336718> rule request: floating point used as loop
|
||||
// condition (FLP30-C, FLP-30-CPP)
|
||||
|
|
|
@ -127,7 +127,7 @@ my %AnalysesDefaultEnabled = (
|
|||
# Do not enable the missing -dealloc check by default.
|
||||
# '-warn-objc-missing-dealloc' => 1,
|
||||
'-warn-objc-unused-ivars' => 1,
|
||||
'-warn-security-syntactic' => 1
|
||||
'-analyzer-check-security-syntactic' => 1
|
||||
);
|
||||
|
||||
##----------------------------------------------------------------------------##
|
||||
|
|
Loading…
Reference in New Issue