From: Reid Kleckner Date: Mon, 27 Jul 2015 22:35:50 +0000 (+0000) Subject: Fix -Wmicrosoft-enum warning X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ff88606563808d2da40533dae28e19d44a9cbdf8;p=oota-llvm.git Fix -Wmicrosoft-enum warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243337 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/TargetParser.h b/include/llvm/Support/TargetParser.h index e6017bec23e..dd37afad290 100644 --- a/include/llvm/Support/TargetParser.h +++ b/include/llvm/Support/TargetParser.h @@ -121,7 +121,7 @@ namespace ARM { }; // Arch extension modifiers for CPUs. - enum ArchExtKind { + enum ArchExtKind : unsigned { AEK_INVALID = 0x0, AEK_NONE = 0x1, AEK_CRC = 0x2,