+2010-03-22  Reid Kleckner  <reid@kleckner.net>
+
+       PR gdb/11094
+       * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
+       bp_jit_event.
+       (disable_breakpoints_in_shlibs): Likewise.
+
+2010-03-22  Reid Kleckner  <reid@kleckner.net>
+
+       PR gdb/11094
+       * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add bp_jit_event
+
 2010-03-22  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * dwarf2read.c (partial_die_parent_scope): Work around buggy
 
        all breakpoints.  If we don't set shlib_disabled here, we'll try
        to insert those breakpoints and fail.  */
     if (((b->type == bp_breakpoint)
+        || (b->type == bp_jit_event)
         || (b->type == bp_hardware_breakpoint)
         || (tracepoint_type (b)))
        && loc->pspace == current_program_space
         || loc->loc_type == bp_loc_software_breakpoint)
        && solib->pspace == loc->pspace
        && !loc->shlib_disabled
-       && (b->type == bp_breakpoint || b->type == bp_hardware_breakpoint)
+       && (b->type == bp_breakpoint
+           || b->type == bp_jit_event
+           || b->type == bp_hardware_breakpoint)
        && solib_contains_address_p (solib, loc->address))
       {
        loc->shlib_disabled = 1;