diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-11-14 14:33:59 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-11-14 14:33:59 +0000 |
commit | 2b27170fdc116a54e81743f3b6943bc9f637e6f5 (patch) | |
tree | 274c717d0f888e34e9ce3bd886707897c0e9d7fa /llvm/lib | |
parent | 00fd5257a26cb0e6ed66e27caf26c3a29ee84e6e (diff) | |
download | bcm5719-llvm-2b27170fdc116a54e81743f3b6943bc9f637e6f5.tar.gz bcm5719-llvm-2b27170fdc116a54e81743f3b6943bc9f637e6f5.zip |
[TSan] fix indentation
llvm-svn: 167928
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp index 9e10fc4416d..0617e545391 100644 --- a/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp @@ -391,7 +391,7 @@ static ConstantInt *createOrdering(IRBuilder<> *IRB, AtomicOrdering ord) { case NotAtomic: assert(false); case Unordered: // Fall-through. case Monotonic: v = 0; break; - // case Consume: v = 1; break; // Not specified yet. + // case Consume: v = 1; break; // Not specified yet. case Acquire: v = 2; break; case Release: v = 3; break; case AcquireRelease: v = 4; break; |