diff options
Diffstat (limited to 'tools/llvmc/CompilerDriver.h')
-rw-r--r-- | tools/llvmc/CompilerDriver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvmc/CompilerDriver.h b/tools/llvmc/CompilerDriver.h index b748e77..bcd3a01 100644 --- a/tools/llvmc/CompilerDriver.h +++ b/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; } |