From 40e9bee60f736e24e8f2ba5d12f178adf77ab8b9 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Wed, 30 Mar 2016 05:26:43 +0000 Subject: [PATCH] [CodeGen] Mark EVT:getExtendedSizeInBits() as LLVM_READONLY. I think I had tried this a long time back and some bots failed. Hoping that was with an older gcc and maybe now it will work. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264840 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/ValueTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h index b1400367971..524a90803df 100644 --- a/include/llvm/CodeGen/ValueTypes.h +++ b/include/llvm/CodeGen/ValueTypes.h @@ -384,7 +384,7 @@ namespace llvm { bool isExtended2048BitVector() const LLVM_READONLY; EVT getExtendedVectorElementType() const; unsigned getExtendedVectorNumElements() const LLVM_READONLY; - unsigned getExtendedSizeInBits() const; + unsigned getExtendedSizeInBits() const LLVM_READONLY; }; } // End llvm namespace