+2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
+
+       * ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
+
 2012-06-21  Alexandre Oliva  <aoliva@redhat.com>
 
        PR debug/53682
 
 
       FOR_EACH_DEP (dest_node->insn, SD_LIST_BACK, sd_it, dep)
        {
-         ddg_node_ptr src_node = get_node_of_insn (g, DEP_PRO (dep));
+         rtx src_insn = DEP_PRO (dep);
+         ddg_node_ptr src_node;
+
+         /* Don't add dependencies on debug insns to non-debug insns
+            to avoid codegen differences between -g and -g0.  */
+         if (DEBUG_INSN_P (src_insn) && !DEBUG_INSN_P (dest_node->insn))
+           continue;
+
+         src_node = get_node_of_insn (g, src_insn);
 
          if (!src_node)
            continue;