diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-05-29 22:02:08 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-05-29 22:02:08 +0000 |
commit | 9cfdac50f17d6723b26779c99ba0579d3341ca2f (patch) | |
tree | bc0d09a418df4b96e47ac9bc66ed57f486196edb /llvm/lib/System/Unix | |
parent | e6f5933e65db1009d296e4e9414b490484a215dd (diff) | |
download | bcm5719-llvm-9cfdac50f17d6723b26779c99ba0579d3341ca2f.tar.gz bcm5719-llvm-9cfdac50f17d6723b26779c99ba0579d3341ca2f.zip |
Unbreak build.
llvm-svn: 51709
Diffstat (limited to 'llvm/lib/System/Unix')
-rw-r--r-- | llvm/lib/System/Unix/Program.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/System/Unix/Program.inc b/llvm/lib/System/Unix/Program.inc index 182e14db096..d0dade1f8ca 100644 --- a/llvm/lib/System/Unix/Program.inc +++ b/llvm/lib/System/Unix/Program.inc @@ -17,8 +17,8 @@ //===----------------------------------------------------------------------===// #include <llvm/Config/config.h> -#include <llvm/Support/Streams.h> #include "Unix.h" +#include <iostream> #if HAVE_SYS_STAT_H #include <sys/stat.h> #endif @@ -210,8 +210,8 @@ Program::ExecuteAndWait(const Path& path, } // Make sure stderr and stdout have been flushed - cerr.flush(); - cout.flush(); + std::cerr << std::flush; + std::cout << std::flush; fsync(1); fsync(2); |