1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-28 05:21:27 +03:00

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

This commit is contained in:
Tom Lane 2006-05-11 21:58:29 +00:00
parent ae6124627b
commit 988e59f452

View File

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