summaryrefslogtreecommitdiff
path: root/compiler/optimizing/nodes.h
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-02-28 17:04:50 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2017-02-28 17:04:50 +0000
commitdb7b44ac3ea80a722aaed12e913ebc1661a57998 (patch)
treeef5e6236203e04b59151b2e1b1529f9b389957b4 /compiler/optimizing/nodes.h
parentcd0b27287843cfd904dd163056322579ab4bbf27 (diff)
Revert "Intrinsify Integer.valueOf."
Heap poisoning missing jit-gcstress not optimizing it. bug:30933338 This reverts commit cd0b27287843cfd904dd163056322579ab4bbf27. Change-Id: I5ece1818afbca5214babb6803f62614a649aedeb
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r--compiler/optimizing/nodes.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h
index c39aed2c6a..8a9e61875a 100644
--- a/compiler/optimizing/nodes.h
+++ b/compiler/optimizing/nodes.h
@@ -1914,9 +1914,6 @@ class HInstruction : public ArenaObject<kArenaAllocInstruction> {
virtual bool IsControlFlow() const { return false; }
- // Can the instruction throw?
- // TODO: We should rename to CanVisiblyThrow, as some instructions (like HNewInstance),
- // could throw OOME, but it is still OK to remove them if they are unused.
virtual bool CanThrow() const { return false; }
bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); }