diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-02 18:57:50 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-04-02 18:57:50 +0000 |
commit | 1b461b0ad072fd36c8c20e7bd29448f08050a3c3 (patch) | |
tree | 204dd3f37d23dda74933c8e45957d1d2245eaf2f /lib/Frontend/CompilerInvocation.cpp | |
parent | 7b69cd09440976d6b93a0db661a770b2337be8d2 (diff) | |
download | clang-1b461b0ad072fd36c8c20e7bd29448f08050a3c3.tar.gz |
Remove dead store.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178561 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index 0fb8e58b3d..fbf0349978 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -1175,9 +1175,6 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK, if (Args.hasArg(OPT_pthread)) Opts.POSIXThreads = 1; - if (Args.hasArg(OPT_fdelayed_template_parsing)) - Opts.DelayedTemplateParsing = 1; - // The value-visibility mode defaults to "default". if (Arg *visOpt = Args.getLastArg(OPT_fvisibility)) { Opts.setValueVisibilityMode(parseVisibility(visOpt, Args, Diags)); |