dbertoni 02/04/16 22:33:43
Modified: c/src/XPath XPath.cpp
Log:
Added pragma for Microsoft to prevent inlining.
Revision Changes Path
1.69 +5 -0 xml-xalan/c/src/XPath/XPath.cpp
Index: XPath.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/XPath.cpp,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- XPath.cpp 3 Apr 2002 05:13:09 -0000 1.68
+++ XPath.cpp 17 Apr 2002 05:33:42 -0000 1.69
@@ -3192,6 +3192,11 @@
+// MSVC generates some really horrible code for some of these very simple
functions when they're inlined...
+#if defined(_MSC_VER)
+#pragma auto_inline(off)
+#endif
+
XPath::eMatchScore
XPath::NodeTester::testComment(
const XalanNode& /* context */,
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]