Commit 62205beb by Iain Sandoe Committed by Iain Sandoe

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
parent 1a4049e7
2012-08-17 Iain Sandoe <iain@codesourcery.com>
* config/rs6000/rs6000.c (macho_branch_islands): Adjust for changes
to vec.h.
2012-08-17 Jakub Jelinek <jakub@redhat.com> 2012-08-17 Jakub Jelinek <jakub@redhat.com>
* doc/invoke.texi (-Wsizeof-pointer-memaccess): Document. * doc/invoke.texi (-Wsizeof-pointer-memaccess): Document.
......
...@@ -24902,7 +24902,7 @@ macho_branch_islands (void) ...@@ -24902,7 +24902,7 @@ macho_branch_islands (void)
while (!VEC_empty (branch_island, branch_islands)) 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 *label = IDENTIFIER_POINTER (bi->label_name);
const char *name = IDENTIFIER_POINTER (bi->function_name); const char *name = IDENTIFIER_POINTER (bi->function_name);
char name_buf[512]; char name_buf[512];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment