src/cpu/sparc/vm/relocInfo_sparc.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6695810 Cdiff src/cpu/sparc/vm/relocInfo_sparc.hpp

src/cpu/sparc/vm/relocInfo_sparc.hpp

Print this page

        

*** 28,39 **** // Since SPARC instructions are whole words, // the two low-order offset bits can always be discarded. offset_unit = 4, // There is no need for format bits; the instructions are ! // sufficiently self-identifying. format_width = 0 }; //Reconciliation History // 1.3 97/10/15 15:38:36 relocInfo_i486.hpp --- 28,43 ---- // Since SPARC instructions are whole words, // the two low-order offset bits can always be discarded. offset_unit = 4, // There is no need for format bits; the instructions are ! // sufficiently self-identifying. Except narrow oops in 64-bits VM. ! #ifdef _LP64 ! format_width = 1 ! #else format_width = 0 + #endif }; //Reconciliation History // 1.3 97/10/15 15:38:36 relocInfo_i486.hpp
src/cpu/sparc/vm/relocInfo_sparc.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File