1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

print the Relocs

This commit is contained in:
Alain Magloire 2003-10-19 05:29:08 +00:00
parent 8517910db6
commit 43dc0a5a21

View file

@ -267,7 +267,7 @@ public class Coff {
buffer.append("s_nreloc = ").append(s_nreloc).append(NL);
buffer.append("s_nlnno = ").append(s_nlnno).append(NL);
buffer.append("s_flags = ").append(s_flags).append(NL);
/*
///*
try {
Reloc[] rcs = getRelocs();
for (int i = 0; i < rcs.length; i++) {
@ -282,7 +282,7 @@ public class Coff {
}
} catch (IOException e) {
}
*/
//*/
return buffer.toString();
}
}