diff options
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/CompilerDriver.h | 4 | ||||
-rw-r--r-- | llvm/tools/llvmc/ConfigLexer.h | 2 | ||||
-rw-r--r-- | llvm/tools/llvmc/ConfigLexer.l | 2 | ||||
-rw-r--r-- | llvm/tools/llvmc/ConfigLexer.l.cvs | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/llvm/tools/llvmc/CompilerDriver.h b/llvm/tools/llvmc/CompilerDriver.h index 1100e3e46f8..3ff3e603241 100644 --- a/llvm/tools/llvmc/CompilerDriver.h +++ b/llvm/tools/llvmc/CompilerDriver.h @@ -65,7 +65,7 @@ namespace llvm { PREPROCESSES_FLAG = 0x0002, ///< Does this action preprocess? TRANSLATES_FLAG = 0x0004, ///< Does this action translate? OUTPUT_IS_ASM_FLAG = 0x0008, ///< Action produces .ll files? - FLAGS_MASK = 0x000F, ///< Union of all flags + FLAGS_MASK = 0x000F ///< Union of all flags }; /// This type is the input list to the CompilerDriver. It provides @@ -131,7 +131,7 @@ namespace llvm { EMIT_RAW_FLAG = 0x0080, ///< Emit raw, unoptimized bytecode KEEP_TEMPS_FLAG = 0x0100, ///< Don't delete temporary files STRIP_OUTPUT_FLAG = 0x0200, ///< Strip symbols from linked output - DRIVER_FLAGS_MASK = 0x03FF, ///< Union of the above flags + DRIVER_FLAGS_MASK = 0x03FF ///< Union of the above flags }; /// @} diff --git a/llvm/tools/llvmc/ConfigLexer.h b/llvm/tools/llvmc/ConfigLexer.h index 3e87fc1a58a..2d5c64e8652 100644 --- a/llvm/tools/llvmc/ConfigLexer.h +++ b/llvm/tools/llvmc/ConfigLexer.h @@ -102,7 +102,7 @@ enum ConfigLexerTokens { TRUETOK, ///< A boolean true value (true/yes/on) VERBOSE_SUBST, ///< The substitution item %verbose% VERSION_TOK, ///< The name "version" (and variants) - WOPTS_SUBST, ///< The %WOpts% substitution + WOPTS_SUBST ///< The %WOpts% substitution }; extern ConfigLexerTokens Configlex(); diff --git a/llvm/tools/llvmc/ConfigLexer.l b/llvm/tools/llvmc/ConfigLexer.l index ca21f4f64d2..34b9a17de18 100644 --- a/llvm/tools/llvmc/ConfigLexer.l +++ b/llvm/tools/llvmc/ConfigLexer.l @@ -64,7 +64,7 @@ handleSubstitution(llvm::ConfigLexerTokens token) { } YY_FATAL_ERROR("Substitition tokens not allowed in names" ); return ERRORTOK; -}; +} inline llvm::ConfigLexerTokens handleValueContext(llvm::ConfigLexerTokens token) { ConfigLexerState.StringVal = yytext; diff --git a/llvm/tools/llvmc/ConfigLexer.l.cvs b/llvm/tools/llvmc/ConfigLexer.l.cvs index ca21f4f64d2..34b9a17de18 100644 --- a/llvm/tools/llvmc/ConfigLexer.l.cvs +++ b/llvm/tools/llvmc/ConfigLexer.l.cvs @@ -64,7 +64,7 @@ handleSubstitution(llvm::ConfigLexerTokens token) { } YY_FATAL_ERROR("Substitition tokens not allowed in names" ); return ERRORTOK; -}; +} inline llvm::ConfigLexerTokens handleValueContext(llvm::ConfigLexerTokens token) { ConfigLexerState.StringVal = yytext; |