summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvmc/CompilerDriver.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-19 18:00:56 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-19 18:00:56 +0000
commit766ad0b77f87177e185d9b65573a6c7b2736bcc5 (patch)
treeda9f7e52b29f6cb9877c25164470bcf8c2e3c899 /llvm/tools/llvmc/CompilerDriver.h
parent6cb551b279720364180a9b14b365cb577da29ef3 (diff)
downloadbcm5719-llvm-766ad0b77f87177e185d9b65573a6c7b2736bcc5.tar.gz
bcm5719-llvm-766ad0b77f87177e185d9b65573a6c7b2736bcc5.zip
For PR351:
* Support changes in sys::Program::ExecuteAndWait interface llvm-svn: 19044
Diffstat (limited to 'llvm/tools/llvmc/CompilerDriver.h')
-rw-r--r--llvm/tools/llvmc/CompilerDriver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvmc/CompilerDriver.h b/llvm/tools/llvmc/CompilerDriver.h
index b748e772c87..bcd3a016d38 100644
--- a/llvm/tools/llvmc/CompilerDriver.h
+++ b/llvm/tools/llvmc/CompilerDriver.h
@@ -81,9 +81,9 @@ namespace llvm {
/// language.
struct Action {
Action() : flags(0) {}
- sys::Path program; ///< The program to execve
- StringVector args; ///< Arguments to the program
- unsigned flags; ///< Action specific flags
+ sys::Path program; ///< The program to execve
+ StringVector args; ///< Arguments to the program
+ unsigned flags; ///< Action specific flags
void set(unsigned fl ) { flags |= fl; }
void clear(unsigned fl) { flags &= (FLAGS_MASK ^ fl); }
bool isSet(unsigned fl) { return (flags&fl) != 0; }
OpenPOWER on IntegriCloud