File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
clang/include/clang/Analysis/FlowSensitive Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -544,9 +544,6 @@ class Environment {
544
544
// / Record a fact that must be true if this point in the program is reached.
545
545
void assume (const Formula &);
546
546
547
- // / Deprecated synonym for `assume()`.
548
- void addToFlowCondition (const Formula &F) { assume (F); }
549
-
550
547
// / Returns true if the formula is always true when this point is reached.
551
548
// / Returns false if the formula may be false (or the flow condition isn't
552
549
// / sufficiently precise to prove that it is true) or if the solver times out.
@@ -563,9 +560,6 @@ class Environment {
563
560
// / (or the flow condition is overly constraining) or if the solver times out.
564
561
bool allows (const Formula &) const ;
565
562
566
- // / Deprecated synonym for `proves()`.
567
- bool flowConditionImplies (const Formula &F) const { return proves (F); }
568
-
569
563
// / Returns the `DeclContext` of the block being analysed, if any. Otherwise,
570
564
// / returns null.
571
565
const DeclContext *getDeclCtx () const { return CallStack.back (); }
You can’t perform that action at this time.
0 commit comments