[Lldb-commits] [lldb] r164081 - /lldb/trunk/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
Jim Ingham
jingham at apple.com
Mon Sep 17 17:00:25 PDT 2012
Author: jingham
Date: Mon Sep 17 19:00:25 2012
New Revision: 164081
URL: http://llvm.org/viewvc/llvm-project?rev=164081&view=rev
Log:
Remove a spurious control character coming from trying to save files in Xcode with emacs' ^x^s.
Modified:
lldb/trunk/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
Modified: lldb/trunk/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp?rev=164081&r1=164080&r2=164081&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp (original)
+++ lldb/trunk/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp Mon Sep 17 19:00:25 2012
@@ -921,7 +921,7 @@
// These two tests are just sanity checks. If I somehow get the
// type calculation wrong above it is better to just return nothing
- // than to assert or crash.
+ // than to assert or crash.
if (!copy_from_extractor)
return return_valobj_sp;
if (copy_from_offset + field_byte_width > copy_from_extractor->GetByteSize())
More information about the lldb-commits
mailing list