summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
index 01be223d3e0..e666290fc91 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
@@ -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
OpenPOWER on IntegriCloud