| Index: src/assembler.h
|
| ===================================================================
|
| --- src/assembler.h (revision 343)
|
| +++ src/assembler.h (working copy)
|
| @@ -162,7 +162,7 @@
|
|
|
| // add more as needed
|
| // Pseudo-types
|
| - reloc_mode_count, // Must be no greater than 14. See RelocInfoWriter.
|
| + reloc_mode_count, // must be no greater than 14 - see RelocInfoWriter
|
| no_reloc, // never recorded
|
| last_code_enum = code_target,
|
| last_gced_enum = embedded_string
|
| @@ -214,14 +214,17 @@
|
| return mode == statement_position;
|
| }
|
|
|
| +
|
| inline bool is_external_reference(RelocMode mode) {
|
| return mode == external_reference;
|
| }
|
|
|
| -inline bool is_internal_reference(RelocMode mode) {
|
| +
|
| +inline bool is_internal_reference(RelocMode mode) {
|
| return mode == internal_reference;
|
| }
|
|
|
| +
|
| // Relocation information consists of the address (pc) of the datum
|
| // to which the relocation information applies, the relocation mode
|
| // (rmode), and an optional data field. The relocation mode may be
|
|
|