Commit ab1ad7a6 authored by Tom Lane's avatar Tom Lane

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

parent ad985756
......@@ -9,7 +9,7 @@
*
*
* 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
* *lock); */
{
#ifdef SUNOS_CC
asm(".seg \"data\"");
asm(".seg \"text\"");
#else
asm(".section \"data\"");
asm(".section \"text\"");
#endif
asm("_tas:");
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment