Index: src/include/storage/s_lock.h
===================================================================
RCS file: /cvsroot/pgsql-server/src/include/storage/s_lock.h,v
retrieving revision 1.109
diff -c -c -r1.109 s_lock.h
*** src/include/storage/s_lock.h	24 Jun 2003 23:20:08 -0000	1.109
--- src/include/storage/s_lock.h	19 Jul 2003 14:10:19 -0000
***************
*** 94,100 ****
   */
  
  
! #if defined(__i386__) || defined(__x86_64__) 
  #define TAS(lock) tas(lock)
  
  static __inline__ int
--- 94,100 ----
   */
  
  
! #if defined(__i386__) || defined(__x86_64__) /* AMD Opteron */
  #define TAS(lock) tas(lock)
  
  static __inline__ int
***************
*** 113,118 ****
--- 113,119 ----
  #endif	 /* __i386__ || __x86_64__ */
  
  
+ /* Intel Itanium */
  #ifdef __ia64__
  #define TAS(lock) tas(lock)
  
