diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-08-14 03:55:16 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-08-14 03:55:16 +0000 |
commit | b27660a733d420967371bbf578a75db21116895c (patch) | |
tree | e76a1b703fa24c0d8c0df63b0695715b043e1b4a | |
parent | 026b3588b9916f3fcb20ad2f02ca5472cbbdc5d7 (diff) |
Placate the mingw32 buildbot by suffixing 64-bit constants with ULL.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161831 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/TableGen/NeonEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/NeonEmitter.cpp b/utils/TableGen/NeonEmitter.cpp index 73a2d0ef33..68373063ba 100644 --- a/utils/TableGen/NeonEmitter.cpp +++ b/utils/TableGen/NeonEmitter.cpp @@ -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) |