diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-15 11:32:49 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-12-15 11:32:49 +0000 |
commit | 67b18080a93ea6b2c475f3385ab6d28f9ae20642 (patch) | |
tree | 0150abd05882493ceaa352b63e28518e436efe94 /gcc/gimple.c | |
parent | 51f438068c3b4027d5cf7149d9c7d4dc9d194c28 (diff) | |
download | gcc-67b18080a93ea6b2c475f3385ab6d28f9ae20642.tar.gz |
2009-12-15 Richard Guenther <rguenther@suse.de>
* gimple.h (compare_field_offset): Declare.
* gimple.c (compare_field_offset): Export.
* lto-streamer-in.c (input_gimple_stmt): Use compare_field_offset.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@155250 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r-- | gcc/gimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c index a04683a87ac..02d8cc4a5df 100644 --- a/gcc/gimple.c +++ b/gcc/gimple.c @@ -3171,7 +3171,7 @@ compare_type_names_p (tree t1, tree t2, bool for_completion_p) /* Return true if the field decls F1 and F2 are at the same offset. */ -static bool +bool compare_field_offset (tree f1, tree f2) { if (DECL_OFFSET_ALIGN (f1) == DECL_OFFSET_ALIGN (f2)) |