mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +00:00
Add support for 'unsigned' command line arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6928 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -575,14 +575,25 @@ bool parser<bool>::parse(Option &O, const char *ArgName,
|
||||
//
|
||||
bool parser<int>::parse(Option &O, const char *ArgName,
|
||||
const std::string &Arg, int &Value) {
|
||||
const char *ArgStart = Arg.c_str();
|
||||
char *End;
|
||||
Value = (int)strtol(ArgStart, &End, 0);
|
||||
Value = (int)strtol(Arg.c_str(), &End, 0);
|
||||
if (*End != 0)
|
||||
return O.error(": '" + Arg + "' value invalid for integer argument!");
|
||||
return false;
|
||||
}
|
||||
|
||||
// parser<unsigned> implementation
|
||||
//
|
||||
bool parser<unsigned>::parse(Option &O, const char *ArgName,
|
||||
const std::string &Arg, unsigned &Value) {
|
||||
char *End;
|
||||
long long int V = strtoll(Arg.c_str(), &End, 0);
|
||||
Value = (unsigned)V;
|
||||
if (*End != 0 || V < 0 || Value != V)
|
||||
return O.error(": '" + Arg + "' value invalid for uint argument!");
|
||||
return false;
|
||||
}
|
||||
|
||||
// parser<double>/parser<float> implementation
|
||||
//
|
||||
static bool parseDouble(Option &O, const std::string &Arg, double &Value) {
|
||||
|
Reference in New Issue
Block a user