From a46d791b1d6433e359764642e4545fab7a10e2cb Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Tue, 1 Dec 2015 21:48:52 +0000 Subject: [PATCH] ARM: Change ArchCheck field to uint64_t 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 8341fbc4efd..73f33087756 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -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} }, -- 2.34.1