diff options
| author | 2019-01-03 17:25:46 +0000 | |
|---|---|---|
| committer | 2019-01-03 17:25:46 +0000 | |
| commit | 699cb00065fd8173901a78ab113fe5f1af3accbc (patch) | |
| tree | 7948ba60e7941e5c977f20cad146ae5e0f856907 /compiler/exception_test.cc | |
| parent | 0f0a4e40667c87fbd4ae5480eddbfd701bfabfa2 (diff) | |
| parent | b8bca301eff0db87d37bc4ab898a4973d211019b (diff) | |
Merge changes If10189f9,I32dde5a6
* changes:
ART: Move DexFileStringEquals to DexFile
ART: Move dex structs into own header
Diffstat (limited to 'compiler/exception_test.cc')
| -rw-r--r-- | compiler/exception_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index f0f179ca14..d5ceafeac9 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -135,8 +135,8 @@ TEST_F(ExceptionTest, FindCatchHandler) { ASSERT_EQ(2u, accessor.TriesSize()); ASSERT_NE(0u, accessor.InsnsSizeInCodeUnits()); - const DexFile::TryItem& t0 = accessor.TryItems().begin()[0]; - const DexFile::TryItem& t1 = accessor.TryItems().begin()[1]; + const dex::TryItem& t0 = accessor.TryItems().begin()[0]; + const dex::TryItem& t1 = accessor.TryItems().begin()[1]; EXPECT_LE(t0.start_addr_, t1.start_addr_); { CatchHandlerIterator iter(accessor, 4 /* Dex PC in the first try block */); |