diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2014-10-10 01:11:39 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2014-10-10 01:11:39 +0000 |
commit | 2c77a427ab7a1c33962a6c190facae33aa499b81 (patch) | |
tree | 8c86966d551220970fc2d03851869385b5740905 /lldb/source/Expression/ClangUtilityFunction.cpp | |
parent | b8e7eaedcb7152046237cc80b76d181d59e22234 (diff) | |
download | bcm5719-llvm-2c77a427ab7a1c33962a6c190facae33aa499b81.tar.gz bcm5719-llvm-2c77a427ab7a1c33962a6c190facae33aa499b81.zip |
Reverse out r219169 related to quote handling.
Addresses pr/21190 (http://llvm.org/bugs/show_bug.cgi?id=21190).
r219169 implemented this change list:
http://reviews.llvm.org/D5472 for more details.
llvm-svn: 219461
Diffstat (limited to 'lldb/source/Expression/ClangUtilityFunction.cpp')
-rw-r--r-- | lldb/source/Expression/ClangUtilityFunction.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lldb/source/Expression/ClangUtilityFunction.cpp b/lldb/source/Expression/ClangUtilityFunction.cpp index 72031153bdb..de5b0c1b03f 100644 --- a/lldb/source/Expression/ClangUtilityFunction.cpp +++ b/lldb/source/Expression/ClangUtilityFunction.cpp @@ -122,9 +122,7 @@ ClangUtilityFunction::Install (Stream &error_stream, } const bool generate_debug_info = true; - Args expr_parser_compiler_args; - target->GetExprParserCompilerArguments (expr_parser_compiler_args); - ClangExpressionParser parser(exe_ctx.GetBestExecutionContextScope(), *this, expr_parser_compiler_args, generate_debug_info); + ClangExpressionParser parser(exe_ctx.GetBestExecutionContextScope(), *this, generate_debug_info); unsigned num_errors = parser.Parse (error_stream); |