From b82d200dcb748619e22491ecfb9662ae86d7dfd5 Mon Sep 17 00:00:00 2001 From: Michael Gottesman Date: Tue, 29 Jan 2013 21:39:02 +0000 Subject: [PATCH] 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 --- lib/Transforms/ObjCARC/ObjCARCOpts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp index c082701f8a5..dbb2cc88d1e 100644 --- a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp +++ b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp @@ -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) -- 2.34.1