]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/avr/avr.c (avr_override_options): Clear
authoraesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Mar 2007 20:28:55 +0000 (20:28 +0000)
committeraesok <aesok@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Mar 2007 20:28:55 +0000 (20:28 +0000)
'flag_delete_null_pointer_checks'.

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

gcc/ChangeLog
gcc/config/avr/avr.c

index de93d5dd1bec8fdf10b9b4227a383f28da7cf47c..e426c4d001339f85c07a3657e6ce130497b2a843 100644 (file)
@@ -1,3 +1,8 @@
+2007-03-30  Anatoly Sokolov <aesok@post.ru>
+
+       * config/avr/avr.c (avr_override_options): Clear 
+       'flag_delete_null_pointer_checks'.
+
 2007-03-30  Paolo Carlini  <pcarlini@suse.de>
 
        PR c++/26099
index 91f6884d0e74a61efcb2d3b8d32e82d14754aa17..6be936be9a7beff544104e70aa62d58007806feb 100644 (file)
@@ -316,6 +316,8 @@ avr_override_options (void)
   const struct mcu_type_s *t;
   const struct base_arch_s *base;
 
+  flag_delete_null_pointer_checks = 0;
+
   for (t = avr_mcu_types; t->name; t++)
     if (strcmp (t->name, avr_mcu_name) == 0)
       break;