diff options
author | 2014-09-25 16:33:42 +0100 | |
---|---|---|
committer | 2014-09-25 16:33:42 +0100 | |
commit | 9ebc72c99e6b703bda611d7c918c9cf3dfb43e55 (patch) | |
tree | 6696e6e51dbe2606d2b2e0c0c60dfec06af97e60 /compiler/optimizing/live_ranges_test.cc | |
parent | a72cb229d555a8ca86dca748733ea3791eaeec14 (diff) |
Make suspend checks note have side effects.
Also adjust gtests.
Change-Id: I5e1a3e53115812b45ec7f4b6f50ba468fa7ac6b1
Diffstat (limited to 'compiler/optimizing/live_ranges_test.cc')
-rw-r--r-- | compiler/optimizing/live_ranges_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/live_ranges_test.cc b/compiler/optimizing/live_ranges_test.cc index a81a30e457..6184897490 100644 --- a/compiler/optimizing/live_ranges_test.cc +++ b/compiler/optimizing/live_ranges_test.cc @@ -233,6 +233,7 @@ TEST(LiveRangesTest, Loop) { ArenaPool pool; ArenaAllocator allocator(&pool); HGraph* graph = BuildGraph(data, &allocator); + RemoveSuspendChecks(graph); x86::CodeGeneratorX86 codegen(graph); SsaLivenessAnalysis liveness(*graph, &codegen); liveness.Analyze(); |