diff options
author | 2017-10-12 11:35:46 +0000 | |
---|---|---|
committer | 2017-10-12 11:35:46 +0000 | |
commit | 37c7405977f88a4f45887178948b27490e8ebfc9 (patch) | |
tree | 6173564d8bab17c37ab1cdb989e326dcf1f17823 /compiler/optimizing/register_allocator.h | |
parent | 387c28110e562a11cc27448472f2031251a9ded4 (diff) | |
parent | bea75ff0835324076fed6ff5d443b9e02c65d223 (diff) |
Merge "Fix using LiveIntervals beyond their lifetime."
Diffstat (limited to 'compiler/optimizing/register_allocator.h')
-rw-r--r-- | compiler/optimizing/register_allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/register_allocator.h b/compiler/optimizing/register_allocator.h index 55a8a381b8..18ef69fcab 100644 --- a/compiler/optimizing/register_allocator.h +++ b/compiler/optimizing/register_allocator.h @@ -50,7 +50,7 @@ class RegisterAllocator : public DeletableArenaObject<kArenaAllocRegisterAllocat const SsaLivenessAnalysis& analysis, Strategy strategy = kRegisterAllocatorDefault); - virtual ~RegisterAllocator() = default; + virtual ~RegisterAllocator(); // Main entry point for the register allocator. Given the liveness analysis, // allocates registers to live intervals. |