diff options
| author | 2014-05-16 18:06:42 +0000 | |
|---|---|---|
| committer | 2014-05-16 18:06:43 +0000 | |
| commit | ed4b6267dde3bc93fae9ce7000880ca017e04114 (patch) | |
| tree | 142b04950b26985f836089ad8fdea68bec9f7f30 /compiler/dex/quick/codegen_util.cc | |
| parent | 49f0ca7660b340d89ed5892e3a38a6b66b279e5e (diff) | |
| parent | d65c51a556e6649db4e18bd083c8fec37607a442 (diff) | |
Merge "ART: Add support for constant vector literals"
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
| -rw-r--r-- | compiler/dex/quick/codegen_util.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index 784dfaf96a..6f812384e4 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -1203,4 +1203,8 @@ RegLocation Mir2Lir::NarrowRegLoc(RegLocation loc) { return loc; } +void Mir2Lir::GenMachineSpecificExtendedMethodMIR(BasicBlock* bb, MIR* mir) { + LOG(FATAL) << "Unknown MIR opcode not supported on this architecture"; +} + } // namespace art |