From 8e19879f5a81c7a14ad9bdf77f495448f8c76a1c Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Fri, 13 Feb 2015 03:47:34 +0000 Subject: [PATCH] Remove KindArcH::PowerPC and sort enums alphabetically. llvm-svn: 229051 --- lld/include/lld/Core/Reference.h | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/lld/include/lld/Core/Reference.h b/lld/include/lld/Core/Reference.h index 181d4583cb3e..d98ca9483fab 100644 --- a/lld/include/lld/Core/Reference.h +++ b/lld/include/lld/Core/Reference.h @@ -56,16 +56,7 @@ public: void setKindNamespace(KindNamespace ns) { _kindNamespace = (uint8_t)ns; } // Which architecture the kind value is for. - enum class KindArch { - all = 0, - x86_64 = 1, - x86 = 2, - ARM = 3, - PowerPC = 4, - Hexagon = 5, - Mips = 6, - AArch64 = 7 - }; + enum class KindArch { all, AArch64, ARM, Hexagon, Mips, x86, x86_64 }; KindArch kindArch() const { return (KindArch)_kindArch; } void setKindArch(KindArch a) { _kindArch = (uint8_t)a; }