diff options
author | 2017-08-02 15:55:43 +0000 | |
---|---|---|
committer | 2017-08-02 15:55:43 +0000 | |
commit | d335e7b4d034bc8b69efde641779c6e1cd7bba42 (patch) | |
tree | c9a1d6e5554721cada972251768c63bd023ffca6 /compiler/optimizing/nodes.h | |
parent | 399492a86198b42fded9ac1f4aa61c82869328eb (diff) | |
parent | 21c7e6fbcabef2f22b467e1e89f4abe1aa43e459 (diff) |
Merge "ART: Fix SimplifyInduction for an instruction with HEnvironment."
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index fa29378e42..e4431422b2 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -7059,6 +7059,10 @@ inline HInstruction* HuntForDeclaration(HInstruction* instruction) { return instruction; } +void RemoveEnvironmentUses(HInstruction* instruction); +bool HasEnvironmentUsedByOthers(HInstruction* instruction); +void ResetEnvironmentInputRecords(HInstruction* instruction); + } // namespace art #endif // ART_COMPILER_OPTIMIZING_NODES_H_ |