aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-01-29 21:41:44 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-01-29 21:41:44 +0000
commit485da648484e443f38c8ddbe5cb8ace07e2166e7 (patch)
tree83fcce0480559a1118b466413ee868615c388d7c /lib
parentb82d200dcb748619e22491ecfb9662ae86d7dfd5 (diff)
Removed trailing comma in last element of enum declaration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Transforms/ObjCARC/ObjCARCOpts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
index dbb2cc88d1..e6cd1a7ca9 100644
--- a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
+++ b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
@@ -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)