From 2583b2a713c2f1cd491805a03b6bf2e95dd2fdee Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 31 Oct 2008 19:56:03 +0000 Subject: [PATCH] Add comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58533 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMJITInfo.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Target/ARM/ARMJITInfo.h b/lib/Target/ARM/ARMJITInfo.h index 5f0ee8d9f26..cdcd1ad1d64 100644 --- a/lib/Target/ARM/ARMJITInfo.h +++ b/lib/Target/ARM/ARMJITInfo.h @@ -56,6 +56,8 @@ namespace llvm { /// pool address resolution is handled by the target. virtual bool hasCustomConstantPool() const { return true; } + /// ResizeConstPoolMap - Resize constant pool ids to CONSTPOOL_ENTRY + /// addresses map. void ResizeConstPoolMap(unsigned Size) { ConstPoolId2AddrMap.resize(Size); }