summaryrefslogtreecommitdiff
path: root/lib/System/Unix/Program.inc
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-01-28 06:42:08 +0000
committerDouglas Gregor <dgregor@apple.com>2010-01-28 06:42:08 +0000
commit21569cddc1a9df3bf4a3c9e06977273f1eba3e63 (patch)
treeec0d3fe97d75d1eb383a69876b1b28e715c5863b /lib/System/Unix/Program.inc
parent150dfa87113e51881c75676edd8e3549eb702d99 (diff)
downloadllvm-21569cddc1a9df3bf4a3c9e06977273f1eba3e63.tar.gz
llvm-21569cddc1a9df3bf4a3c9e06977273f1eba3e63.tar.bz2
llvm-21569cddc1a9df3bf4a3c9e06977273f1eba3e63.tar.xz
Add llvm::Program::ChangeStderrToBinary().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Unix/Program.inc')
-rw-r--r--lib/System/Unix/Program.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc
index 43c3606d98..e8c2806247 100644
--- a/lib/System/Unix/Program.inc
+++ b/lib/System/Unix/Program.inc
@@ -323,4 +323,9 @@ bool Program::ChangeStdoutToBinary(){
return false;
}
+bool Program::ChangeStderrToBinary(){
+ // Do nothing, as Unix doesn't differentiate between text and binary.
+ return false;
+}
+
}