[compiler-rt] r369711 - Fixing buildbot due to style.
David Carlier via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 22 14:53:21 PDT 2019
Author: devnexen
Date: Thu Aug 22 14:53:21 2019
New Revision: 369711
URL: http://llvm.org/viewvc/llvm-project?rev=369711&view=rev
Log:
Fixing buildbot due to style.
Modified:
compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cpp
Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cpp?rev=369711&r1=369710&r2=369711&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cpp (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_linux.cpp Thu Aug 22 14:53:21 2019
@@ -2024,7 +2024,8 @@ void CheckASLR() {
}
if (aslr_pie > 0) {
- Printf("This sanitizer is not compatible with enabled ASLR and binaries compiled with PIE\n");
+ Printf("This sanitizer is not compatible with enabled ASLR "
+ "and binaries compiled with PIE\n");
Die();
}
#endif
@@ -2035,7 +2036,8 @@ void CheckASLR() {
}
if (aslr_pie > 0) {
- Printf("This sanitizer is not compatible with enabled ASLR and binaries compiled with PIE\n");
+ Printf("This sanitizer is not compatible with enabled ASLR "
+ "and binaries compiled with PIE\n");
Die();
}
#else
More information about the llvm-commits
mailing list