forked from OSchip/llvm-project
Placate the mingw32 buildbot by suffixing 64-bit constants with ULL.
llvm-svn: 161831
This commit is contained in:
parent
697cc9e60c
commit
f44b8ee52e
|
@ -1552,7 +1552,7 @@ void NeonEmitter::runHeader(raw_ostream &OS) {
|
|||
if (mask) {
|
||||
OS << "case ARM::BI__builtin_neon_"
|
||||
<< MangleName(name, TypeVec[si], ClassB)
|
||||
<< ": mask = " << "0x" << utohexstr(mask);
|
||||
<< ": mask = " << "0x" << utohexstr(mask) << "ULL";
|
||||
if (PtrArgNum >= 0)
|
||||
OS << "; PtrArgNum = " << PtrArgNum;
|
||||
if (HasConstPtr)
|
||||
|
@ -1562,7 +1562,7 @@ void NeonEmitter::runHeader(raw_ostream &OS) {
|
|||
if (qmask) {
|
||||
OS << "case ARM::BI__builtin_neon_"
|
||||
<< MangleName(name, TypeVec[qi], ClassB)
|
||||
<< ": mask = " << "0x" << utohexstr(qmask);
|
||||
<< ": mask = " << "0x" << utohexstr(qmask) << "ULL";
|
||||
if (PtrArgNum >= 0)
|
||||
OS << "; PtrArgNum = " << PtrArgNum;
|
||||
if (HasConstPtr)
|
||||
|
|
Loading…
Reference in New Issue