[compiler-rt] r230541 - Fix >80 line after r230530.
Kuba Brecka
kuba.brecka at gmail.com
Wed Feb 25 12:56:04 PST 2015
Author: kuba.brecka
Date: Wed Feb 25 14:56:04 2015
New Revision: 230541
URL: http://llvm.org/viewvc/llvm-project?rev=230541&view=rev
Log:
Fix >80 line after r230530.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc?rev=230541&r1=230540&r2=230541&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc Wed Feb 25 14:56:04 2015
@@ -105,7 +105,8 @@ SymbolizerProcess::SymbolizerProcess(con
CHECK_NE(path_[0], '\0');
}
-char *SymbolizerProcess::SendCommand(bool is_data, const char *module_name, uptr module_offset) {
+char *SymbolizerProcess::SendCommand(bool is_data, const char *module_name,
+ uptr module_offset) {
for (; times_restarted_ < kMaxTimesRestarted; times_restarted_++) {
// Start or restart symbolizer if we failed to send command to it.
if (char *res = SendCommandImpl(is_data, module_name, module_offset))
More information about the llvm-commits
mailing list