1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00

Removed trailing comma in last element of enum declaration.

llvm-svn: 173836
This commit is contained in:
Michael Gottesman 2013-01-29 21:41:44 +00:00
parent cbf143b3cd
commit ab4288b56e

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