From: mike-m Date: Tue, 18 May 2010 21:22:12 +0000 (+0000) Subject: Fix enum to address array bounds regression. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=eb75870206f8be5b4a755199471f33459fd890aa;p=oota-llvm.git Fix enum to address array bounds regression. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104058 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h index 2d4760d3368..6e2a102274a 100644 --- a/include/llvm/CodeGen/ValueTypes.h +++ b/include/llvm/CodeGen/ValueTypes.h @@ -78,7 +78,7 @@ namespace llvm { isVoid = 34, // This has no value - LAST_VALUETYPE = 34, // This always remains at the end of the list. + LAST_VALUETYPE = 35, // This always remains at the end of the list. // This is the current maximum for LAST_VALUETYPE. // EVT::MAX_ALLOWED_VALUETYPE is used for asserts and to size bit vectors