Searched refs:MayReadAnyGlobal (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp91 enum { MayReadAnyGlobal = 4 }; enumerator in enum:GlobalsAAResult::FunctionInfo::__anon4440
94 static_assert((MayReadAnyGlobal & static_cast<int>(ModRefInfo::MustModRef)) ==
96 "ModRef and the MayReadAnyGlobal flag bits overlap.");
97 static_assert(((MayReadAnyGlobal |
133 /// This method clears MayReadAnyGlobal bit added by GlobalsAAResult to return
153 bool mayReadAnyGlobal() const { return Info.getInt() & MayReadAnyGlobal; }
156 void setMayReadAnyGlobal() { Info.setInt(Info.getInt() | MayReadAnyGlobal); }

Completed in 46 milliseconds