Commit 9b54a9c2 authored by Iain Ireland's avatar Iain Ireland
Browse files

Bug 1673049: Fix jitsrc with breakpoints r=mgaudet DONTBUILD

parent 3431ce7d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ class JitSource(gdb.Command):
        self.dont_repeat()

    def disable_breakpoints(self):
        self.disabled_breakpoints = [b for b in gdb.breakpoints() if b.enabled()]
        self.disabled_breakpoints = [b for b in gdb.breakpoints() if b.enabled]
        for b in self.disabled_breakpoints:
            b.enabled = False