diff options
author | Eric Christopher <echristo@gmail.com> | 2016-09-20 19:45:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2016-09-20 19:45:06 +0000 |
commit | 07a791643b810c3e94990513ee7f20b237f3dc7a (patch) | |
tree | 0e1b5a42a4e5ce8a800d14b5831518e828c45d3a | |
parent | ee924709697cc5d2a5e6a54d23eda7a63497d310 (diff) | |
download | bcm5719-llvm-07a791643b810c3e94990513ee7f20b237f3dc7a.tar.gz bcm5719-llvm-07a791643b810c3e94990513ee7f20b237f3dc7a.zip |
Remove some boilerplate comments that don't explain anything.
llvm-svn: 282007
-rw-r--r-- | clang/lib/Driver/Tools.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Driver/Tools.cpp b/clang/lib/Driver/Tools.cpp index f3f40f2bd1f..0cfcf4a9511 100644 --- a/clang/lib/Driver/Tools.cpp +++ b/clang/lib/Driver/Tools.cpp @@ -108,8 +108,6 @@ static const char *getSparcAsmModeForCPU(StringRef Name, } } -/// CheckPreprocessingOptions - Perform some validation of preprocessing -/// arguments that is shared with gcc. static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) { if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC)) { if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) && @@ -121,8 +119,6 @@ static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) { } } -/// CheckCodeGenerationOptions - Perform some validation of code generation -/// arguments that is shared with gcc. static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) { // In gcc, only ARM checks this, but it seems reasonable to check universally. if (Args.hasArg(options::OPT_static)) |