Add std::move in SetHandlerDexPcList

Based on the comment in
https://android-review.git.corp.google.com/c/platform/art/+/2253915/3/runtime/quick_exception_handler.h#b114
we need to add a std::move to avoid a copy.

Test: art/test/testrunner/testrunner.py --host --64 --optimizing -b
Change-Id: Ife4f77dbed0effa4760f6f06c63d85e46efc8ecb
diff --git a/runtime/quick_exception_handler.h b/runtime/quick_exception_handler.h
index f3ce624..39462e5 100644
--- a/runtime/quick_exception_handler.h
+++ b/runtime/quick_exception_handler.h
@@ -110,7 +110,7 @@
   }
 
   void SetHandlerDexPcList(std::vector<uint32_t>&& handler_dex_pc_list) {
-    handler_dex_pc_list_ = handler_dex_pc_list;
+    handler_dex_pc_list_ = std::move(handler_dex_pc_list);
   }
 
   uint32_t GetCatchStackMapRow() const {