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

Bugzilla 234478

This commit is contained in:
Randy Rohrbach 2008-05-29 18:29:02 +00:00
parent 8f20c097dc
commit f342b42793

View file

@ -89,6 +89,11 @@ public class MIDataListRegisterValues extends MICommand<MIDataListRegisterValues
if (! (command instanceof MIDataListRegisterValues) ) return null;
MIDataListRegisterValues cmd = (MIDataListRegisterValues) command;
/*
* If the format is different then this cannot be added to the list.
*/
if ( fFmt != cmd.fFmt ) return null;
int[] newregnos = new int[ regnums.length + cmd.regnums.length];