2009-06-04 Vladimir Serbinenko <phcoder@gmail.com>

Use .asciz instead of .string

	* i386/pc/diskboot.S: use .asciz instead of .string
	* i386/pc/boot.S: likewise
	* include/grub/dl.h (GRUB_MOD_DEP): likewise
	(GRUB_MOD_NAME): likewise
This commit is contained in:
phcoder 2009-06-04 19:28:02 +00:00
parent 3eb5ed4ec0
commit 5389763d12
4 changed files with 24 additions and 14 deletions

View file

@ -41,10 +41,10 @@ static void \
grub_mod_fini (void)
#define GRUB_MOD_NAME(name) \
__asm__ (".section .modname\n.string \"" #name "\"\n")
__asm__ (".section .modname\n.asciz \"" #name "\"\n")
#define GRUB_MOD_DEP(name) \
__asm__ (".section .moddeps\n.string \"" #name "\"\n")
__asm__ (".section .moddeps\n.asciz \"" #name "\"\n")
struct grub_dl_segment
{