[TSan] fix indentation
authorAlexey Samsonov <samsonov@google.com>
Wed, 14 Nov 2012 14:33:59 +0000 (14:33 +0000)
committerAlexey Samsonov <samsonov@google.com>
Wed, 14 Nov 2012 14:33:59 +0000 (14:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167928 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/ThreadSanitizer.cpp

index 9e10fc4416de24b404f29d7e513ba31efb5592c9..0617e545391730627493d849e1d3626cf8223f84 100644 (file)
@@ -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;