Moved S_Stop back to its previous position in the sequence order.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173834 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Michael Gottesman 2013-01-29 21:39:02 +00:00
parent f662a59b8b
commit b82d200dcb

View File

@ -316,9 +316,9 @@ namespace {
S_Retain, ///< objc_retain(x).
S_CanRelease, ///< foo(x) -- x could possibly see a ref count decrement.
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_Stop ///< like S_Release, but code motion is stopped.
};
raw_ostream &operator<<(raw_ostream &OS, const Sequence S)