From f620099b3fafff396ebd43ffc54407e2a34c56ac Mon Sep 17 00:00:00 2001 From: Sung-Jae Lee Date: Mon, 6 Jun 2016 00:01:58 +0900 Subject: [PATCH] [ARM64/Linux] Fix 'error: 109 enumeration values not handled in switch' (#5493) This fixes ARM64 Linux compilation error ``` /home/sjlee/git/coreclr/src/jit/emit.h:988:61: error: 109 enumeration values not handled in switch: 'IF_NONE', 'IF_LABEL', 'IF_EN9'... [-Werror,-Wswitch] ``` --- src/jit/emit.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/jit/emit.h b/src/jit/emit.h index ea9d19b..c8de077 100644 --- a/src/jit/emit.h +++ b/src/jit/emit.h @@ -1005,6 +1005,8 @@ protected: size = 8; } break; + default: + break; } return size; -- 2.7.4