]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2005-11-13 Timothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>
authormarco_g <marco_g@localhost>
Sun, 13 Nov 2005 21:37:16 +0000 (21:37 +0000)
committermarco_g <marco_g@localhost>
Sun, 13 Nov 2005 21:37:16 +0000 (21:37 +0000)
* include/grub/symbol.h: (FUNCTION): Use double quotes instead of
"@" which marks the start of a comment on ARM.
(VARIABLE): Likewise.

ChangeLog
include/grub/symbol.h

index 2f6140cf628d59cee351974bcdb73aef9bb54061..42731f1180ccb36246144744c60feec3e70f9993 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-11-13  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
+
+       * include/grub/symbol.h: (FUNCTION): Use double quotes instead of
+       "@" which marks the start of a comment on ARM.
+       (VARIABLE): Likewise.
+
 2005-11-13  Timothy Baldwin  <T.E.Baldwin99@members.leeds.ac.uk>
 
         Add support for Linux/ADFS partition tables.
index 8c392e86e7beb36ff171e301ca3f96d3d63d0d63..d8e5f1ccff1c50aa1ede0482b4afc60445918571 100644 (file)
@@ -29,8 +29,8 @@
 # define EXT_C(sym)    sym
 #endif
 
-#define FUNCTION(x)    .globl EXT_C(x) ; .type EXT_C(x), @function ; EXT_C(x):
-#define VARIABLE(x)    .globl EXT_C(x) ; .type EXT_C(x), @object ; EXT_C(x):
+#define FUNCTION(x)    .globl EXT_C(x) ; .type EXT_C(x), "function" ; EXT_C(x):
+#define VARIABLE(x)    .globl EXT_C(x) ; .type EXT_C(x), "object" ; EXT_C(x):
 
 /* Mark an exported symbol.  */
 #define EXPORT_FUNC(x) x