1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 02:36:01 +02:00

Check for the core type.

This commit is contained in:
Alain Magloire 2002-11-22 16:32:00 +00:00
parent 81a37c9668
commit 3b64f661db

View file

@ -226,6 +226,10 @@ public class ElfBinaryFile extends PlatformObject implements IBinaryFile,
case Attribute.ELF_TYPE_OBJ: case Attribute.ELF_TYPE_OBJ:
type = IBinaryFile.OBJECT; type = IBinaryFile.OBJECT;
break; break;
case Attribute.ELF_TYPE_CORE:
type = IBinaryFile.CORE;
break;
} }
} }
return type; return type;