File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -446,6 +446,7 @@ module IR {
446446 /** Gets the target to which this instruction writes. */
447447 WriteTarget getLhs ( ) { result = lhs }
448448
449+ /** Holds if this instruction initializes a literal. */
449450 predicate isInitialization ( ) { initialization = true }
450451
451452 /** Gets the instruction computing the value this instruction writes. */
Original file line number Diff line number Diff line change @@ -817,6 +817,7 @@ module Public {
817817 abstract Node getPreUpdateNode ( ) ;
818818 }
819819
820+ /** Holds if the node corresponding to `insn` has a post-update node. */
820821 predicate insnHasPostUpdateNode ( IR:: Instruction insn ) {
821822 exists ( Expr e | insn .( IR:: EvalInstruction ) .getExpr ( ) = e |
822823 e instanceof AddressExpr or
You can’t perform that action at this time.
0 commit comments