diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-11 21:58:29 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-05-11 21:58:29 +0000 |
commit | 988e59f452fbeed5fd1bef73b4cbcdea356cad96 (patch) | |
tree | 26552aaf1d9905619989c8ab2641b066429ee579 | |
parent | ae6124627bfc8bea554a5010504b372825b82c00 (diff) |
Remove unnecessary .seg/.section directives, per Alan Stange.
-rw-r--r-- | src/backend/storage/lmgr/s_lock.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/backend/storage/lmgr/s_lock.c b/src/backend/storage/lmgr/s_lock.c index 3330c48a877..8e1791db71e 100644 --- a/src/backend/storage/lmgr/s_lock.c +++ b/src/backend/storage/lmgr/s_lock.c @@ -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:"); /* |