Revision: 4619
Author: [email protected]
Date: Fri May  7 13:31:24 2010
Log: 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
[email protected].  See http://codereview.chromium.org/2044004

http://code.google.com/p/v8/source/detail?r=4619

Modified:
 /branches/bleeding_edge/src/x64/assembler-x64-inl.h

=======================================
--- /branches/bleeding_edge/src/x64/assembler-x64-inl.h Mon May 3 03:43:49 2010 +++ /branches/bleeding_edge/src/x64/assembler-x64-inl.h Fri May 7 13:31:24 2010
@@ -34,7 +34,7 @@
 namespace v8 {
 namespace internal {

-Condition NegateCondition(Condition cc) {
+inline Condition NegateCondition(Condition cc) {
   return static_cast<Condition>(cc ^ 1);
 }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to