avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2420] bug #42024: fix typo in avrtiny macro


From: Pitchumani
Subject: [avr-libc-commit] [2420] bug #42024: fix typo in avrtiny macro
Date: Mon, 28 Apr 2014 14:05:11 +0000

Revision: 2420
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2420
Author:   pitchumani
Date:     2014-04-28 14:05:10 +0000 (Mon, 28 Apr 2014)
Log Message:
-----------
bug #42024: fix typo in avrtiny macro

Ticket Links:
------------
    http://savannah.gnu.org/bugs/?42024

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/NEWS
    trunk/avr-libc/libc/misc/itoa.S
    trunk/avr-libc/libc/misc/itoa_ncheck.S
    trunk/avr-libc/libc/misc/ltoa.S
    trunk/avr-libc/libc/misc/ltoa_ncheck.S
    trunk/avr-libc/libc/misc/ultoa.S
    trunk/avr-libc/libc/misc/ultoa_ncheck.S
    trunk/avr-libc/libc/misc/utoa.S
    trunk/avr-libc/libc/misc/utoa_ncheck.S

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2014-04-28 13:36:30 UTC (rev 2419)
+++ trunk/avr-libc/ChangeLog    2014-04-28 14:05:10 UTC (rev 2420)
@@ -1,3 +1,16 @@
+2014-04-28  Pitchumani Sivanupandi <address@hidden>
+
+       Fix for bug #42024: build break regarding avrtiny10
+       Submitted by address@hidden
+       * libc/misc/itoa.S: Fix typo in avr tiny macro.
+       * libc/misc/itoa_ncheck.S: Same.
+       * libc/misc/ltoa.S: Same.
+       * libc/misc/ltoa_ncheck.S: Same.
+       * libc/misc/utoa.S: Same.
+       * libc/misc/utoa_ncheck.S: Same.
+       * libc/misc/ultoa.S: Same.
+       * libc/misc/ultoa_ncheck.S: Same.
+
 2014-04-28  Joey Morin <address@hidden>
 
        Fix for bug #40003: Integer type promotion leads to inefficent code in 
wdt.h

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2014-04-28 13:36:30 UTC (rev 2419)
+++ trunk/avr-libc/NEWS 2014-04-28 14:05:10 UTC (rev 2420)
@@ -21,6 +21,7 @@
   [#40567] Invalid names in iotn13a.h (EEPE/EEMPE/BODS/BODSE)
   [#40595] iotn2313a.h: wrong fuses definitions for High Fuse Byte
   [#41519] wrong SPM_PAGESIZE definition in iotn[48]8.h
+  [#42024] build break regarding avrtiny10
   [#42084] wrong LFUSE_DEFAULT in iotn84a.h
   [#42085] HFUSE_DEFAULT not defined for iotn84.h
   [no-id]  XXX_vect_num not consistent io90pwmx.h, iousbxx6_7.h

Modified: trunk/avr-libc/libc/misc/itoa.S
===================================================================
--- trunk/avr-libc/libc/misc/itoa.S     2014-04-28 13:36:30 UTC (rev 2419)
+++ trunk/avr-libc/libc/misc/itoa.S     2014-04-28 14:05:10 UTC (rev 2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/itoa_ncheck.S
===================================================================
--- trunk/avr-libc/libc/misc/itoa_ncheck.S      2014-04-28 13:36:30 UTC (rev 
2419)
+++ trunk/avr-libc/libc/misc/itoa_ncheck.S      2014-04-28 14:05:10 UTC (rev 
2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/ltoa.S
===================================================================
--- trunk/avr-libc/libc/misc/ltoa.S     2014-04-28 13:36:30 UTC (rev 2419)
+++ trunk/avr-libc/libc/misc/ltoa.S     2014-04-28 14:05:10 UTC (rev 2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/ltoa_ncheck.S
===================================================================
--- trunk/avr-libc/libc/misc/ltoa_ncheck.S      2014-04-28 13:36:30 UTC (rev 
2419)
+++ trunk/avr-libc/libc/misc/ltoa_ncheck.S      2014-04-28 14:05:10 UTC (rev 
2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/ultoa.S
===================================================================
--- trunk/avr-libc/libc/misc/ultoa.S    2014-04-28 13:36:30 UTC (rev 2419)
+++ trunk/avr-libc/libc/misc/ultoa.S    2014-04-28 14:05:10 UTC (rev 2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/ultoa_ncheck.S
===================================================================
--- trunk/avr-libc/libc/misc/ultoa_ncheck.S     2014-04-28 13:36:30 UTC (rev 
2419)
+++ trunk/avr-libc/libc/misc/ultoa_ncheck.S     2014-04-28 14:05:10 UTC (rev 
2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/utoa.S
===================================================================
--- trunk/avr-libc/libc/misc/utoa.S     2014-04-28 13:36:30 UTC (rev 2419)
+++ trunk/avr-libc/libc/misc/utoa.S     2014-04-28 14:05:10 UTC (rev 2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 

Modified: trunk/avr-libc/libc/misc/utoa_ncheck.S
===================================================================
--- trunk/avr-libc/libc/misc/utoa_ncheck.S      2014-04-28 13:36:30 UTC (rev 
2419)
+++ trunk/avr-libc/libc/misc/utoa_ncheck.S      2014-04-28 14:05:10 UTC (rev 
2420)
@@ -29,7 +29,7 @@
 /* $Id$        */
 
 #if    !defined (__DOXYGEN__)
-#if    !defined (__AVR_TINY)
+#if    !defined (__AVR_TINY__)
 
 #include "asmdef.h"
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]