Remove unnecessary .seg/.section directives, per Alan Stange.

This commit is contained in:
Tom Lane 2006-05-11 21:58:22 +00:00
parent ad98575617
commit ab1ad7a653

View File

@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/storage/lmgr/s_lock.c,v 1.43 2006/03/05 15:58:39 momjian Exp $ * $PostgreSQL: pgsql/src/backend/storage/lmgr/s_lock.c,v 1.44 2006/05/11 21:58:22 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -291,15 +291,6 @@ static void
tas_dummy() /* really means: extern int tas(slock_t tas_dummy() /* really means: extern int tas(slock_t
* *lock); */ * *lock); */
{ {
#ifdef SUNOS_CC
asm(".seg \"data\"");
asm(".seg \"text\"");
#else
asm(".section \"data\"");
asm(".section \"text\"");
#endif
asm("_tas:"); asm("_tas:");
/* /*