Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 69284
Collapse All | Expand All

(-)utils/org/eclipse/cdt/utils/som/SOM.java (-6 / +1 lines)
Lines 429-445 Link Here
429
		// Machine type.
429
		// Machine type.
430
		switch (filehdr.system_id) {
430
		switch (filehdr.system_id) {
431
			case FileHeader.PA_RISC_10:
431
			case FileHeader.PA_RISC_10:
432
				attrib.cpu = "pa-risc_1.0"; //$NON-NLS-1$
433
			break;
434
			case FileHeader.PA_RISC_11:
432
			case FileHeader.PA_RISC_11:
435
				attrib.cpu = "pa-risc_1.1"; //$NON-NLS-1$
436
			break;
437
			case FileHeader.PA_RISC_20:
433
			case FileHeader.PA_RISC_20:
438
				attrib.cpu = "pa-risc_2.0"; //$NON-NLS-1$
434
				attrib.cpu = "PA_RISC"; //$NON-NLS-1$
439
			break;
435
			break;
440
			default:
436
			default:
441
				attrib.cpu = "unknown"; //$NON-NLS-1$
437
				attrib.cpu = "unknown"; //$NON-NLS-1$
442
			break;
443
		}
438
		}
444
439
445
		/* SOM characteristics, FileHeader.a_magic.  */
440
		/* SOM characteristics, FileHeader.a_magic.  */

Return to bug 69284