[TSan] fix indentation

llvm-svn: 167928
This commit is contained in:
Alexey Samsonov 2012-11-14 14:33:59 +00:00
parent 00fd5257a2
commit 2b27170fdc

View 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;