OLD | NEW |
1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000) | 1 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000) |
2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, | 2 Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
3 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | 3 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
4 Written by Ian Lance Taylor, Cygnus Support. | 4 Written by Ian Lance Taylor, Cygnus Support. |
5 | 5 |
6 This file is part of GAS, the GNU Assembler. | 6 This file is part of GAS, the GNU Assembler. |
7 | 7 |
8 GAS is free software; you can redistribute it and/or modify | 8 GAS is free software; you can redistribute it and/or modify |
9 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
10 the Free Software Foundation; either version 3, or (at your option) | 10 the Free Software Foundation; either version 3, or (at your option) |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 static void ppc_bs (int); | 101 static void ppc_bs (int); |
102 static void ppc_eb (int); | 102 static void ppc_eb (int); |
103 static void ppc_ec (int); | 103 static void ppc_ec (int); |
104 static void ppc_ef (int); | 104 static void ppc_ef (int); |
105 static void ppc_es (int); | 105 static void ppc_es (int); |
106 static void ppc_csect (int); | 106 static void ppc_csect (int); |
107 static void ppc_change_csect (symbolS *, offsetT); | 107 static void ppc_change_csect (symbolS *, offsetT); |
108 static void ppc_function (int); | 108 static void ppc_function (int); |
109 static void ppc_extern (int); | 109 static void ppc_extern (int); |
110 static void ppc_lglobl (int); | 110 static void ppc_lglobl (int); |
| 111 static void ppc_ref (int); |
111 static void ppc_section (int); | 112 static void ppc_section (int); |
112 static void ppc_named_section (int); | 113 static void ppc_named_section (int); |
113 static void ppc_stabx (int); | 114 static void ppc_stabx (int); |
114 static void ppc_rename (int); | 115 static void ppc_rename (int); |
115 static void ppc_toc (int); | 116 static void ppc_toc (int); |
116 static void ppc_xcoff_cons (int); | 117 static void ppc_xcoff_cons (int); |
117 static void ppc_vbyte (int); | 118 static void ppc_vbyte (int); |
118 #endif | 119 #endif |
119 | 120 |
120 #ifdef OBJ_ELF | 121 #ifdef OBJ_ELF |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 { "bb", ppc_bb, 0 }, | 203 { "bb", ppc_bb, 0 }, |
203 { "bc", ppc_bc, 0 }, | 204 { "bc", ppc_bc, 0 }, |
204 { "bf", ppc_bf, 0 }, | 205 { "bf", ppc_bf, 0 }, |
205 { "bi", ppc_biei, 0 }, | 206 { "bi", ppc_biei, 0 }, |
206 { "bs", ppc_bs, 0 }, | 207 { "bs", ppc_bs, 0 }, |
207 { "csect", ppc_csect, 0 }, | 208 { "csect", ppc_csect, 0 }, |
208 { "data", ppc_section, 'd' }, | 209 { "data", ppc_section, 'd' }, |
209 { "eb", ppc_eb, 0 }, | 210 { "eb", ppc_eb, 0 }, |
210 { "ec", ppc_ec, 0 }, | 211 { "ec", ppc_ec, 0 }, |
211 { "ef", ppc_ef, 0 }, | 212 { "ef", ppc_ef, 0 }, |
error: old chunk mismatch |
None
OLD | NEW |