mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 09:11:43 +00:00
Fixed typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179721 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d58f773b96
commit
9739b65264
@ -713,9 +713,9 @@ EnableARCAnnotations("enable-objc-arc-annotations", cl::init(false),
|
|||||||
cl::desc("Enable emission of arc data flow analysis "
|
cl::desc("Enable emission of arc data flow analysis "
|
||||||
"annotations"));
|
"annotations"));
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
EnableCheckForCFGHazards("enable-objc-arc-checkforcfghazards", cl::init(true),
|
DisableCheckForCFGHazards("disable-objc-arc-checkforcfghazards", cl::init(false),
|
||||||
cl::desc("Disable check for cfg hazards when "
|
cl::desc("Disable check for cfg hazards when "
|
||||||
"annotating"));
|
"annotating"));
|
||||||
|
|
||||||
/// This function appends a unique ARCAnnotationProvenanceSourceMDKind id to an
|
/// This function appends a unique ARCAnnotationProvenanceSourceMDKind id to an
|
||||||
/// instruction so that we can track backwards when post processing via the llvm
|
/// instruction so that we can track backwards when post processing via the llvm
|
||||||
@ -2177,7 +2177,7 @@ ObjCARCOpt::VisitTopDown(BasicBlock *BB,
|
|||||||
ANNOTATE_TOPDOWN_BBEND(MyStates, BB);
|
ANNOTATE_TOPDOWN_BBEND(MyStates, BB);
|
||||||
|
|
||||||
#ifdef ARC_ANNOTATIONS
|
#ifdef ARC_ANNOTATIONS
|
||||||
if (EnableARCAnnotations && EnableCheckForCFGHazards)
|
if (!(EnableARCAnnotations && DisableCheckForCFGHazards))
|
||||||
#endif
|
#endif
|
||||||
CheckForCFGHazards(BB, BBStates, MyStates);
|
CheckForCFGHazards(BB, BBStates, MyStates);
|
||||||
return NestingDetected;
|
return NestingDetected;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user