Revision: 23526
Author: [email protected]
Date: Fri Aug 29 15:42:51 2014 UTC
Log: [arm64] Fix order of decoder visitor add functions
AppendVisitor and PrependVisitor implementations were switched.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/519723002
https://code.google.com/p/v8/source/detail?r=23526
Modified:
/branches/bleeding_edge/src/arm64/decoder-arm64.cc
=======================================
--- /branches/bleeding_edge/src/arm64/decoder-arm64.cc Mon Aug 4 11:34:54
2014 UTC
+++ /branches/bleeding_edge/src/arm64/decoder-arm64.cc Fri Aug 29 15:42:51
2014 UTC
@@ -17,13 +17,13 @@
void DispatchingDecoderVisitor::AppendVisitor(DecoderVisitor* new_visitor)
{
visitors_.remove(new_visitor);
- visitors_.push_front(new_visitor);
+ visitors_.push_back(new_visitor);
}
void DispatchingDecoderVisitor::PrependVisitor(DecoderVisitor*
new_visitor) {
visitors_.remove(new_visitor);
- visitors_.push_back(new_visitor);
+ visitors_.push_front(new_visitor);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.