* cfgexpand.c (gimple_expand_cfg): Discard the source location
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Jun 2009 08:10:53 +0000 (08:10 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Jun 2009 08:10:53 +0000 (08:10 +0000)
only for builtins that are not overridden.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148078 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cfgexpand.c

index a58b9f1..153046d 100644 (file)
@@ -1,5 +1,10 @@
 2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
 
+       * cfgexpand.c (gimple_expand_cfg): Discard the source location
+       only for builtins that are not overridden.
+
+2009-06-02  Alexandre Oliva  <aoliva@redhat.com>
+
        * gengtype.c (adjust_field_rtx_def): Add NOTE_INSN_DELETED_LABEL's
        label string.
 
index 65a13de..31d346e 100644 (file)
@@ -2438,7 +2438,7 @@ gimple_expand_cfg (void)
   rtl_profile_for_bb (ENTRY_BLOCK_PTR);
 
   insn_locators_alloc ();
-  if (!DECL_BUILT_IN (current_function_decl))
+  if (!DECL_IS_BUILTIN (current_function_decl))
     {
       /* Eventually, all FEs should explicitly set function_start_locus.  */
       if (cfun->function_start_locus == UNKNOWN_LOCATION)