Skip to content

Commit

Permalink
Fix whitespace and line wrapping. NFC.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268725 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Ryan Govostes committed May 6, 2016
1 parent 7cf5d68 commit ffe6f6b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/Transforms/Instrumentation/AddressSanitizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,10 @@ static cl::opt<bool> ClSkipPromotableAllocas(
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.
Expand Down

0 comments on commit ffe6f6b

Please sign in to comment.