From bfa91a43d6f8a58aa9db375ed0a6209293e9f312 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 23 Jan 2006 19:25:12 +0000 Subject: Make i386 build w/ -std=c99 (almost) --- ldso/ldso/i386/dl-startup.h | 2 +- ldso/ldso/i386/dl-sysdep.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ldso/ldso/i386') diff --git a/ldso/ldso/i386/dl-startup.h b/ldso/ldso/i386/dl-startup.h index d3c7109d9..6521bf72d 100644 --- a/ldso/ldso/i386/dl-startup.h +++ b/ldso/ldso/i386/dl-startup.h @@ -3,7 +3,7 @@ * Architecture specific code used by dl-startup.c * Copyright (C) 2000-2004 by Erik Andersen */ -asm( +__asm__( " .text\n" " .align 16\n" " .globl _start\n" diff --git a/ldso/ldso/i386/dl-sysdep.h b/ldso/ldso/i386/dl-sysdep.h index a8b1ab33a..a1613bea4 100644 --- a/ldso/ldso/i386/dl-sysdep.h +++ b/ldso/ldso/i386/dl-sysdep.h @@ -47,7 +47,7 @@ extern unsigned long _dl_linux_resolver(struct elf_resolve * tpnt, int reloc_ent static inline Elf32_Addr __attribute__ ((unused)) elf_machine_dynamic (void) { - register Elf32_Addr *got asm ("%ebx"); + register Elf32_Addr *got __asm__ ("%ebx"); return *got; } @@ -61,7 +61,7 @@ elf_machine_load_address (void) via the GOT to make sure the compiler initialized %ebx in time. */ extern int _dl_errno; Elf32_Addr addr; - asm ("leal _dl_start@GOTOFF(%%ebx), %0\n" + __asm__ ("leal _dl_start@GOTOFF(%%ebx), %0\n" "subl _dl_start@GOT(%%ebx), %0" : "=r" (addr) : "m" (_dl_errno) : "cc"); return addr; -- cgit v1.2.3