[opengtl-commits] [448] show the fully linked source code |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/opengtl-commits Archives
]
Revision: 448
Author: cyrille
Date: 2008-10-11 22:52:41 +0200 (Sat, 11 Oct 2008)
Log Message:
-----------
show the fully linked source code
Modified Paths:
--------------
trunk/OpenGTL/OpenCTL/OpenCTL/Module.cpp
Modified: trunk/OpenGTL/OpenCTL/OpenCTL/Module.cpp
===================================================================
--- trunk/OpenGTL/OpenCTL/OpenCTL/Module.cpp 2008-10-11 20:41:07 UTC (rev 447)
+++ trunk/OpenGTL/OpenCTL/OpenCTL/Module.cpp 2008-10-11 20:52:41 UTC (rev 448)
@@ -160,7 +160,7 @@
GTLCore::String Module::asmSourceCode() const
{
std::ostringstream os;
- os << *d->moduleData->llvmModule() << std::endl;
+ os << *d->moduleData->llvmLinkedModule() << std::endl;
return os.str();
}