Removed trailing comma in last element of enum declaration.
authorMichael Gottesman <mgottesman@apple.com>
Tue, 29 Jan 2013 21:41:44 +0000 (21:41 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Tue, 29 Jan 2013 21:41:44 +0000 (21:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173836 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/ObjCARC/ObjCARCOpts.cpp

index dbb2cc88d1ef7fdbdf30e4e69485400c04a2539a..e6cd1a7ca9c8c8253c0f285148529421219a77c1 100644 (file)
@@ -318,7 +318,7 @@ namespace {
     S_Use,            ///< any use of x.
     S_Stop,           ///< like S_Release, but code motion is stopped.
     S_Release,        ///< objc_release(x).
-    S_MovableRelease, ///< objc_release(x), !clang.imprecise_release.
+    S_MovableRelease  ///< objc_release(x), !clang.imprecise_release.
   };
 
   raw_ostream &operator<<(raw_ostream &OS, const Sequence S)