diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-10 19:09:13 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-10 19:09:13 +0000 |
commit | 46116ce06ae28e3fc3a34c513f2f63ac02d9a194 (patch) | |
tree | 2a37e06a654d65e9793a065eb02fc781307e6029 /lib/Frontend/CompilerInvocation.cpp | |
parent | d281915e49ae69609c28ccc55c0a02ae97a52eb9 (diff) |
Rename -dump-record-layouts to -fdump-record-layouts now that the option behaves like aa flag.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@100943 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index f5f9ea4226..17007b0079 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -1204,7 +1204,7 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, Opts.PICLevel = getLastArgIntValue(Args, OPT_pic_level, 0, Diags); Opts.SjLjExceptions = Args.hasArg(OPT_fsjlj_exceptions); Opts.Static = Args.hasArg(OPT_static_define); - Opts.DumpRecordLayouts = Args.hasArg(OPT_dump_record_layouts); + Opts.DumpRecordLayouts = Args.hasArg(OPT_fdump_record_layouts); Opts.DumpVtableLayouts = Args.hasArg(OPT_fdump_vtable_layouts); Opts.OptimizeSize = 0; |