aboutsummaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
authorIain Sandoe <iain@codesourcery.com>2012-08-17 07:30:24 +0000
committerIain Sandoe <iains@gcc.gnu.org>2012-08-17 07:30:24 +0000
commit62205bebb08d83b461c7ed8073dd9b10eabe2f12 (patch)
tree6c250d64bb50ae99193937921ff703516e32e7cd /gcc/config
parent1a4049e7c504bedf3f485fd94a26902959a4ce2a (diff)
downloadgcc-62205bebb08d83b461c7ed8073dd9b10eabe2f12.zip
gcc-62205bebb08d83b461c7ed8073dd9b10eabe2f12.tar.gz
gcc-62205bebb08d83b461c7ed8073dd9b10eabe2f12.tar.bz2
rs6000.c (macho_branch_islands): Adjust for changes to vec.h.
* config/rs6000/rs6000.c (macho_branch_islands): Adjust for changes to vec.h. From-SVN: r190468
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/rs6000/rs6000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 4571c6f..ba55321 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -24902,7 +24902,7 @@ macho_branch_islands (void)
while (!VEC_empty (branch_island, branch_islands))
{
- branch_island *bi = VEC_last (branch_island, branch_islands);
+ branch_island *bi = &VEC_last (branch_island, branch_islands);
const char *label = IDENTIFIER_POINTER (bi->label_name);
const char *name = IDENTIFIER_POINTER (bi->function_name);
char name_buf[512];