mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
cleanup warnings
This commit is contained in:
parent
95eca12e8f
commit
de67e84c2f
1 changed files with 4 additions and 6 deletions
|
@ -310,8 +310,6 @@ public class Elf {
|
||||||
public short st_shndx;
|
public short st_shndx;
|
||||||
|
|
||||||
private String name = null;
|
private String name = null;
|
||||||
private String line = null;
|
|
||||||
private String func = null;
|
|
||||||
|
|
||||||
private Section sym_section;
|
private Section sym_section;
|
||||||
|
|
||||||
|
@ -655,19 +653,19 @@ public class Elf {
|
||||||
attrib.cpu = "excess"; //$NON-NLS-1$
|
attrib.cpu = "excess"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
case Elf.ELFhdr.EM_NIOSII :
|
case Elf.ELFhdr.EM_NIOSII :
|
||||||
attrib.cpu = "alteranios2";
|
attrib.cpu = "alteranios2"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
case Elf.ELFhdr.EM_NIOS :
|
case Elf.ELFhdr.EM_NIOS :
|
||||||
attrib.cpu = "alteranios";
|
attrib.cpu = "alteranios"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
case Elf.ELFhdr.EM_IA_64:
|
case Elf.ELFhdr.EM_IA_64:
|
||||||
attrib.cpu = "ia64"; //$NON-NLS-1$
|
attrib.cpu = "ia64"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
case Elf.ELFhdr.EM_AVR:
|
case Elf.ELFhdr.EM_AVR:
|
||||||
attrib.cpu = "avr";
|
attrib.cpu = "avr"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
case Elf.ELFhdr.EM_MSP430:
|
case Elf.ELFhdr.EM_MSP430:
|
||||||
attrib.cpu = "msp430";
|
attrib.cpu = "msp430"; //$NON-NLS-1$
|
||||||
break;
|
break;
|
||||||
case Elf.ELFhdr.EM_NONE:
|
case Elf.ELFhdr.EM_NONE:
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Reference in a new issue