Commit 3b48085e by Andrew Pinski Committed by Andrew Pinski

rs6000.c (print_operand, <case 'z'>): Make sure that we are in INDIRECT mode…

rs6000.c (print_operand, <case 'z'>): Make sure that we are in INDIRECT mode when getting the stub name.

2004-06-08  Andrew Pinski  <pinskia@physics.uc.edu>

        * config/rs6000/rs6000.c (print_operand, <case 'z'>):
        Make sure that we are in INDIRECT mode when getting the
        stub name.

From-SVN: r82777
parent 03defda9
2004-06-08 Andrew Pinski <pinskia@physics.uc.edu>
* config/rs6000/rs6000.c (print_operand, <case 'z'>):
Make sure that we are in INDIRECT mode when getting the
stub name.
2004-06-08 Anil Paranjpe <anilp1@kpitcummins.com>
* h8300.md (extendqisi2_h8300): Add constraints.
......
......@@ -9744,7 +9744,8 @@ print_operand (FILE *file, rtx x, int code)
{
const char *name = XSTR (x, 0);
#if TARGET_MACHO
if (machopic_classify_name (name) == MACHOPIC_UNDEFINED_FUNCTION)
if (MACHOPIC_INDIRECT
&& machopic_classify_name (name) == MACHOPIC_UNDEFINED_FUNCTION)
name = machopic_stub_name (name);
#endif
assemble_name (file, name);
......
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