Commit 429f0065 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Mark a function in assembler-x64-inl.h inline.

Without this annotation, it can be multiply-defined when it is
included in multiple source files.  This is a commit for
evanm@chromium.org.  See http://codereview.chromium.org/2044004


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4619 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d5738c0e
......@@ -34,7 +34,7 @@
namespace v8 {
namespace internal {
Condition NegateCondition(Condition cc) {
inline Condition NegateCondition(Condition cc) {
return static_cast<Condition>(cc ^ 1);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment