Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-debug-dev] Bug in MIBreakInsert

MIBreakInsert incorrectly assumes that a breakpoint cannot be both a
temporary breakpoint and a hardware breakpoint:

In particular, in:

		if (isTemporary) {
			opts[i] = "-t"; //$NON-NLS-1$
			i++;
		} else if (isHardware) {
			opts[i] = "-h"; //$NON-NLS-1$
			i++;
		}

the "else" should be removed.

How should I submit a patch to get this fixed?

-- 
Mark Mitchell
CodeSourcery
mark@xxxxxxxxxxxxxxxx
(650) 331-3385 x713


Back to the top