1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix a few instances of "warning: extra ';' outside of a function [-pedantic]".

llvm-svn: 129002
This commit is contained in:
Frits van Bommel 2011-04-06 12:29:56 +00:00
parent ecc7d9a408
commit 51604bed0f

View File

@ -1140,13 +1140,13 @@ printGenericOptionDiff(const Option &O, const GenericOptionValue &Value,
outs() << ")\n"; \
} \
PRINT_OPT_DIFF(bool);
PRINT_OPT_DIFF(boolOrDefault);
PRINT_OPT_DIFF(int);
PRINT_OPT_DIFF(unsigned);
PRINT_OPT_DIFF(double);
PRINT_OPT_DIFF(float);
PRINT_OPT_DIFF(char);
PRINT_OPT_DIFF(bool)
PRINT_OPT_DIFF(boolOrDefault)
PRINT_OPT_DIFF(int)
PRINT_OPT_DIFF(unsigned)
PRINT_OPT_DIFF(double)
PRINT_OPT_DIFF(float)
PRINT_OPT_DIFF(char)
void parser<std::string>::
printOptionDiff(const Option &O, StringRef V, OptionValue<std::string> D,