Fix Regression/TableGen/2006-09-18-LargeInt.td

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30472 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-09-18 22:28:27 +00:00
parent 02982501a7
commit a4503de431
4 changed files with 8 additions and 6 deletions

View File

@ -2373,6 +2373,8 @@ public:
}
} else if (IntInit *II =
dynamic_cast<IntInit*>(Child->getLeafValue())) {
if (II->getValue() == 2147483647)
std::cerr << "HERE!\n";
emitCheck("isa<ConstantSDNode>(" + RootName + utostr(OpNo) + ")");
unsigned CTmp = TmpNo++;
emitCode("int64_t CN"+utostr(CTmp)+" = cast<ConstantSDNode>("+

View File

@ -535,8 +535,8 @@ std::vector<std::string> IncludeDirectories;
///
static int ParseInt(const char *Str) {
if (Str[0] == '0' && Str[1] == 'b')
return strtol(Str+2, 0, 2);
return strtol(Str, 0, 0);
return strtoll(Str+2, 0, 2);
return strtoll(Str, 0, 0);
}
static int CommentDepth = 0;

View File

@ -42,8 +42,8 @@ std::vector<std::string> IncludeDirectories;
///
static int ParseInt(const char *Str) {
if (Str[0] == '0' && Str[1] == 'b')
return strtol(Str+2, 0, 2);
return strtol(Str, 0, 0);
return strtoll(Str+2, 0, 2);
return strtoll(Str, 0, 0);
}
static int CommentDepth = 0;

View File

@ -42,8 +42,8 @@ std::vector<std::string> IncludeDirectories;
///
static int ParseInt(const char *Str) {
if (Str[0] == '0' && Str[1] == 'b')
return strtol(Str+2, 0, 2);
return strtol(Str, 0, 0);
return strtoll(Str+2, 0, 2);
return strtoll(Str, 0, 0);
}
static int CommentDepth = 0;