mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-20 08:10:28 +08:00
* tree-gimple.c (get_base_address): Update documentation.
From-SVN: r92134
This commit is contained in:
parent
0b16f8f413
commit
370d199d82
@ -1,3 +1,7 @@
|
||||
2004-12-14 Diego Novillo <dnovillo@redhat.com>
|
||||
|
||||
* tree-gimple.c (get_base_address): Update documentation.
|
||||
|
||||
2004-12-13 Richard Henderson <rth@redhat.com>
|
||||
|
||||
PR middle-end/17930
|
||||
|
@ -419,7 +419,14 @@ get_call_expr_in (tree t)
|
||||
return NULL_TREE;
|
||||
}
|
||||
|
||||
/* Given a memory reference expression T, return its base address. */
|
||||
/* Given a memory reference expression T, return its base address.
|
||||
The base address of a memory reference expression is the main
|
||||
object being referenced. For instance, the base address for
|
||||
'array[i].fld[j]' is 'array'. You can think of this as stripping
|
||||
away the offset part from a memory address.
|
||||
|
||||
This function calls handled_component_p to strip away all the inner
|
||||
parts of the memory reference until it reaches the base object. */
|
||||
|
||||
tree
|
||||
get_base_address (tree t)
|
||||
|
Loading…
x
Reference in New Issue
Block a user