From db7b44ac3ea80a722aaed12e913ebc1661a57998 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 28 Feb 2017 17:04:50 +0000 Subject: Revert "Intrinsify Integer.valueOf." Heap poisoning missing jit-gcstress not optimizing it. bug:30933338 This reverts commit cd0b27287843cfd904dd163056322579ab4bbf27. Change-Id: I5ece1818afbca5214babb6803f62614a649aedeb --- compiler/optimizing/nodes.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'compiler/optimizing/nodes.h') 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 { 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(); } -- cgit v1.2.3-59-g8ed1b