svn commit: trunk/uClibc/ldso/ldso/arm

vapier at uclibc.org vapier at uclibc.org
Tue Jan 31 01:32:34 UTC 2006


Author: vapier
Date: 2006-01-30 17:32:33 -0800 (Mon, 30 Jan 2006)
New Revision: 13737

Log:
John Bowler says: use (!thumb) instead of (arm) since thumb defines arm

Modified:
   trunk/uClibc/ldso/ldso/arm/dl-startup.h


Changeset:
Modified: trunk/uClibc/ldso/ldso/arm/dl-startup.h
===================================================================
--- trunk/uClibc/ldso/ldso/arm/dl-startup.h	2006-01-31 00:33:26 UTC (rev 13736)
+++ trunk/uClibc/ldso/ldso/arm/dl-startup.h	2006-01-31 01:32:33 UTC (rev 13737)
@@ -4,8 +4,8 @@
  * Copyright (C) 2000-2004 by Erik Andersen <andersen at codepoet.org>
  */
 
-#if defined(__arm__)
-asm(
+#if !defined(__thumb__)
+__asm__(
     "	.text\n"
     "	.globl	_start\n"
     "	.type	_start,%function\n"
@@ -57,7 +57,7 @@
 	".previous\n"
 );
 #else
-asm(
+__asm__(
     "	.text\n"
     "	.arm\n"
     "	.globl	_start\n"




More information about the uClibc-cvs mailing list