[Lldb-commits] [PATCH] D14118: Changes for Bug 17384
Oleksiy Vyalov via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 27 10:25:29 PDT 2015
ovyalov accepted this revision.
ovyalov added a comment.
Looks good - minor comments.
================
Comment at: source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp:513
@@ +512,3 @@
+ {
+ FileSpec file_spec;
+ file_spec.SetFile("[vdso]", false);
----------------
Please combine these 2 lines - FileSpec file_spec("[vdso]", false);
================
Comment at: test/functionalities/inferior-assert/TestInferiorAssert.py:161
@@ -162,1 +160,3 @@
pc_backup_offset = 0
+ if "i386" in self.getArchitecture():
+ if lastframeID == frame.GetFrameID():
----------------
Could you store result of "i386" in self.getArchitecture() as temp variable outside of frames's loop?
http://reviews.llvm.org/D14118
More information about the lldb-commits
mailing list