[llvm-commits] [llvm] r167928 - /llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp

Alexey Samsonov samsonov at google.com
Wed Nov 14 06:33:59 PST 2012


Author: samsonov
Date: Wed Nov 14 08:33:59 2012
New Revision: 167928

URL: http://llvm.org/viewvc/llvm-project?rev=167928&view=rev
Log:
[TSan] fix indentation

Modified:
    llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp

Modified: llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp?rev=167928&r1=167927&r2=167928&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/ThreadSanitizer.cpp Wed Nov 14 08:33:59 2012
@@ -391,7 +391,7 @@
     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;





More information about the llvm-commits mailing list