[llvm] r262777 - ExecutionEngine: tweak debug log
Saleem Abdulrasool via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 5 12:00:41 PST 2016
Author: compnerd
Date: Sat Mar 5 14:00:41 2016
New Revision: 262777
URL: http://llvm.org/viewvc/llvm-project?rev=262777&view=rev
Log:
ExecutionEngine: tweak debug log
Add a newline to separate the log message. NFC.
Modified:
llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
Modified: llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp?rev=262777&r1=262776&r2=262777&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp (original)
+++ llvm/trunk/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp Sat Mar 5 14:00:41 2016
@@ -1289,7 +1289,7 @@ relocation_iterator RuntimeDyldELF::proc
if (RelType == ELF::R_ARM_PC24 || RelType == ELF::R_ARM_CALL ||
RelType == ELF::R_ARM_JUMP24) {
// This is an ARM branch relocation, need to use a stub function.
- DEBUG(dbgs() << "\t\tThis is an ARM branch relocation.");
+ DEBUG(dbgs() << "\t\tThis is an ARM branch relocation.\n");
SectionEntry &Section = Sections[SectionID];
// Look for an existing stub.
More information about the llvm-commits
mailing list