[llvm] r268725 - Fix whitespace and line wrapping. NFC.
Ryan Govostes via llvm-commits
llvm-commits at lists.llvm.org
Fri May 6 04:22:12 PDT 2016
Author: rgov
Date: Fri May 6 06:22:11 2016
New Revision: 268725
URL: http://llvm.org/viewvc/llvm-project?rev=268725&view=rev
Log:
Fix whitespace and line wrapping. NFC.
Modified:
llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Modified: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=268725&r1=268724&r2=268725&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp Fri May 6 06:22:11 2016
@@ -208,9 +208,10 @@ static cl::opt<bool> ClSkipPromotableAll
static cl::opt<int> ClMappingScale("asan-mapping-scale",
cl::desc("scale of asan shadow mapping"),
cl::Hidden, cl::init(0));
-static cl::opt<unsigned long long> ClMappingOffset("asan-mapping-offset",
- cl::desc("offset of asan shadow mapping [EXPERIMENTAL]"),
- cl::Hidden, cl::init(0));
+static cl::opt<unsigned long long> ClMappingOffset(
+ "asan-mapping-offset",
+ cl::desc("offset of asan shadow mapping [EXPERIMENTAL]"), cl::Hidden,
+ cl::init(0));
// Optimization flags. Not user visible, used mostly for testing
// and benchmarking the tool.
More information about the llvm-commits
mailing list