[llvm-commits] CVS: llvm/lib/System/DynamicLibrary.cpp

Reid Spencer reid at x10sys.com
Fri Jan 19 13:30:55 PST 2007



Changes in directory llvm/lib/System:

DynamicLibrary.cpp updated: 1.20 -> 1.21
---
Log message:

Handle each of stderr/stdin/stdout separately.


---
Diffs of the changes:  (+4 -0)

 DynamicLibrary.cpp |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm/lib/System/DynamicLibrary.cpp
diff -u llvm/lib/System/DynamicLibrary.cpp:1.20 llvm/lib/System/DynamicLibrary.cpp:1.21
--- llvm/lib/System/DynamicLibrary.cpp:1.20	Wed Jan 10 18:35:10 2007
+++ llvm/lib/System/DynamicLibrary.cpp	Fri Jan 19 15:30:39 2007
@@ -172,7 +172,11 @@
   {
 #ifndef stdin
     EXPLICIT_SYMBOL(stdin);
+#endif
+#ifndef stdout
     EXPLICIT_SYMBOL(stdout);
+#endif
+#ifndef stderr
     EXPLICIT_SYMBOL(stderr);
 #endif
   }






More information about the llvm-commits mailing list