ARM: Change ArchCheck field to uint64_t
authorMatthias Braun <matze@braunis.de>
Tue, 1 Dec 2015 21:48:52 +0000 (21:48 +0000)
committerMatthias Braun <matze@braunis.de>
Tue, 1 Dec 2015 21:48:52 +0000 (21:48 +0000)
The values in this field are compared against getAvailableFeatures()
which returns an uint64_t. This was causing problems in an internal
branch.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254462 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/AsmParser/ARMAsmParser.cpp

index 8341fbc4efd1a2a0ed982091b7c08b096e83a575..73f3308775667523a432b89dedbd0a146d39fd46 100644 (file)
@@ -9916,7 +9916,7 @@ extern "C" void LLVMInitializeARMAsmParser() {
 // flags below, that were generated by table-gen.
 static const struct {
   const unsigned Kind;
-  const unsigned ArchCheck;
+  const uint64_t ArchCheck;
   const FeatureBitset Features;
 } Extensions[] = {
   { ARM::AEK_CRC, Feature_HasV8, {ARM::FeatureCRC} },