summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2012-11-14 14:33:59 +0000
committerAlexey Samsonov <samsonov@google.com>2012-11-14 14:33:59 +0000
commit2b27170fdc116a54e81743f3b6943bc9f637e6f5 (patch)
tree274c717d0f888e34e9ce3bd886707897c0e9d7fa /llvm/lib/Transforms
parent00fd5257a26cb0e6ed66e27caf26c3a29ee84e6e (diff)
downloadbcm5719-llvm-2b27170fdc116a54e81743f3b6943bc9f637e6f5.tar.gz
bcm5719-llvm-2b27170fdc116a54e81743f3b6943bc9f637e6f5.zip
[TSan] fix indentation
llvm-svn: 167928
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r--llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp2
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;
OpenPOWER on IntegriCloud