diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-01-28 06:42:08 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-01-28 06:42:08 +0000 |
commit | 1051937c214309dfa42f861feca2bf420b1f2edb (patch) | |
tree | f4d5de0dcc8e5162a3173ffcf8713e62d21c3f9f /llvm/lib/System/Unix | |
parent | 9f4ea22c88b278593188192e4e4b8054d3943e61 (diff) | |
download | bcm5719-llvm-1051937c214309dfa42f861feca2bf420b1f2edb.tar.gz bcm5719-llvm-1051937c214309dfa42f861feca2bf420b1f2edb.zip |
Add llvm::Program::ChangeStderrToBinary().
llvm-svn: 94743
Diffstat (limited to 'llvm/lib/System/Unix')
-rw-r--r-- | llvm/lib/System/Unix/Program.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/Program.inc b/llvm/lib/System/Unix/Program.inc index 43c3606d983..e8c28062478 100644 --- a/llvm/lib/System/Unix/Program.inc +++ b/llvm/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; +} + } |