diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-19 18:00:56 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-19 18:00:56 +0000 |
| commit | 766ad0b77f87177e185d9b65573a6c7b2736bcc5 (patch) | |
| tree | da9f7e52b29f6cb9877c25164470bcf8c2e3c899 /llvm/tools/llvmc/CompilerDriver.h | |
| parent | 6cb551b279720364180a9b14b365cb577da29ef3 (diff) | |
| download | bcm5719-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.h | 6 |
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; } |

