From 8c3184137b7fe0b78d154cd788779f1f70589db8 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sun, 28 Feb 2016 16:11:53 +0000 Subject: [PATCH] Delete dead arch types. llvm-svn: 262183 --- lld/include/lld/Core/Reference.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/include/lld/Core/Reference.h b/lld/include/lld/Core/Reference.h index 3fc5462..86de4f6 100644 --- a/lld/include/lld/Core/Reference.h +++ b/lld/include/lld/Core/Reference.h @@ -52,7 +52,7 @@ public: void setKindNamespace(KindNamespace ns) { _kindNamespace = (uint8_t)ns; } // Which architecture the kind value is for. - enum class KindArch { all, AArch64, AMDGPU, ARM, Hexagon, Mips, x86, x86_64 }; + enum class KindArch { all, AArch64, ARM, x86, x86_64}; KindArch kindArch() const { return (KindArch)_kindArch; } void setKindArch(KindArch a) { _kindArch = (uint8_t)a; } -- 2.7.4