Commit c0a0f346 authored by Bruce Momjian's avatar Bruce Momjian

Fix VAX ASM '1 f' -> '1f'.

parent 77b347d2
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.77 2000/12/30 02:34:56 tgl Exp $ * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.78 2001/01/18 23:40:26 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -226,7 +226,7 @@ tas(volatile slock_t *lock) ...@@ -226,7 +226,7 @@ tas(volatile slock_t *lock)
register _res; register _res;
__asm__(" movl $1, r0 \ __asm__(" movl $1, r0 \
bbssi $0, (%1), 1 f \ bbssi $0, (%1), 1f \
clrl r0 \ clrl r0 \
1: movl r0, %0 " 1: movl r0, %0 "
: "=r"(_res) /* return value, in register */ : "=r"(_res) /* return value, in register */
......
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