diff options
author | Devang Patel <dpatel@apple.com> | 2011-04-08 23:39:38 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-04-08 23:39:38 +0000 |
commit | 778947c2037cf7f817ab16fe18b396626753ee69 (patch) | |
tree | 1d6b3254f9c8f87a4aae046143c622437bf12f93 /llvm/docs | |
parent | 5ae6b64e7f2740a43d5d1508c60269add134ed84 (diff) | |
download | bcm5719-llvm-778947c2037cf7f817ab16fe18b396626753ee69.tar.gz bcm5719-llvm-778947c2037cf7f817ab16fe18b396626753ee69.zip |
Simplify array bound checks and clarify comments. One element array can have same non-zero number as lower bound as well as upper bound.
llvm-svn: 129170
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/docs/SourceLevelDebugging.html b/llvm/docs/SourceLevelDebugging.html index 10c78f68888..440f409bc43 100644 --- a/llvm/docs/SourceLevelDebugging.html +++ b/llvm/docs/SourceLevelDebugging.html @@ -708,7 +708,8 @@ DW_TAG_inheritance = 28 <a href="#format_composite_type">composite type</a>. The low value defines the lower bounds typically zero for C/C++. The high value is the upper bounds. Values are 64 bit. High - low + 1 is the size of the array. If low - > high the array will be unbounded.</p> + > high the array bounds are not included in generated debugging information. +</p> </div> |