Return-Path: X-Original-To: apmail-stdcxx-commits-archive@www.apache.org Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5C096DDA7 for ; Wed, 19 Sep 2012 12:39:45 +0000 (UTC) Received: (qmail 34408 invoked by uid 500); 19 Sep 2012 12:39:45 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 34276 invoked by uid 500); 19 Sep 2012 12:39:40 -0000 Mailing-List: contact commits-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list commits@stdcxx.apache.org Received: (qmail 34230 invoked by uid 99); 19 Sep 2012 12:39:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Sep 2012 12:39:38 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Sep 2012 12:39:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B901D23888E3 for ; Wed, 19 Sep 2012 12:38:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1387556 - /stdcxx/branches/4.2.x/src/x86_64/atomic.s Date: Wed, 19 Sep 2012 12:38:51 -0000 To: commits@stdcxx.apache.org From: lnicoara@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120919123851.B901D23888E3@eris.apache.org> Author: lnicoara Date: Wed Sep 19 12:38:51 2012 New Revision: 1387556 URL: http://svn.apache.org/viewvc?rev=1387556&view=rev Log: 2012-09-19 Liviu Nicoara Reviewing revision 1385075: * src/x86_64/atomic.s: (TYPE_DIR) reverted definition to @function because STT_FUNC is unsupported by fbe in Linux builds with SunPro Modified: stdcxx/branches/4.2.x/src/x86_64/atomic.s Modified: stdcxx/branches/4.2.x/src/x86_64/atomic.s URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/src/x86_64/atomic.s?rev=1387556&r1=1387555&r2=1387556&view=diff ============================================================================== --- stdcxx/branches/4.2.x/src/x86_64/atomic.s (original) +++ stdcxx/branches/4.2.x/src/x86_64/atomic.s Wed Sep 19 12:38:51 2012 @@ -46,7 +46,7 @@ **************************************************************************/ .globl __rw_atomic_xchg8 - TYPE_DIR (__rw_atomic_xchg8, STT_FUNC) + TYPE_DIR (__rw_atomic_xchg8, @function) __rw_atomic_xchg8: /* ; int8_t (int8_t *x, int8_t y) */ movq %rdi, %rcx /* ; %rcx = x */ movb %sil, %al /* ; %al = y */ @@ -62,7 +62,7 @@ __rw_atomic_xchg8: /* ; **************************************************************************/ .globl __rw_atomic_xchg16 - TYPE_DIR (__rw_atomic_xchg16, STT_FUNC) + TYPE_DIR (__rw_atomic_xchg16, @function) __rw_atomic_xchg16: /* ; int16_t (int16_t *x, int16_t y) */ movq %rdi, %rcx /* ; %rcx = x */ movw %si, %ax /* ; %ax = y */ @@ -78,7 +78,7 @@ __rw_atomic_xchg16: /* ; **************************************************************************/ .globl __rw_atomic_xchg32 - TYPE_DIR (__rw_atomic_xchg32, STT_FUNC) + TYPE_DIR (__rw_atomic_xchg32, @function) __rw_atomic_xchg32: /* ; int32_t (int32_t *x, int32_t y) */ movq %rdi, %rcx /* ; %rcx = x */ movl %esi, %eax /* ; %eax = y */ @@ -94,7 +94,7 @@ __rw_atomic_xchg32: /* ; **************************************************************************/ .globl __rw_atomic_xchg64 - TYPE_DIR (__rw_atomic_xchg64, STT_FUNC) + TYPE_DIR (__rw_atomic_xchg64, @function) __rw_atomic_xchg64: /* ; int64_t (int64_t *x, int64_t y) */ movq %rdi, %rcx /* ; %rcx = x */ movq %rsi, %rax /* ; %rax = y */ @@ -110,7 +110,7 @@ __rw_atomic_xchg64: /* ; **************************************************************************/ .globl __rw_atomic_add8 - TYPE_DIR (__rw_atomic_add8, STT_FUNC) + TYPE_DIR (__rw_atomic_add8, @function) __rw_atomic_add8: /* ; int8_t (int8_t *dst, int8_t inc) */ movq %rdi, %rcx /* ; %rcx = dst */ movl %esi, %eax /* ; %eax = inc */ @@ -132,7 +132,7 @@ __rw_atomic_add8: /* ; **************************************************************************/ .globl __rw_atomic_add16 - TYPE_DIR (__rw_atomic_add16, STT_FUNC) + TYPE_DIR (__rw_atomic_add16, @function) __rw_atomic_add16: /* ; int16_t (int16_t *dst, int16_t inc) */ movq %rdi, %rcx /* ; %rcx = dst */ movw %si, %ax /* ; %ax = inc */ @@ -155,7 +155,7 @@ __rw_atomic_add16: /* ; **************************************************************************/ .globl __rw_atomic_add32 - TYPE_DIR (__rw_atomic_add32, STT_FUNC) + TYPE_DIR (__rw_atomic_add32, @function) __rw_atomic_add32: /* ; int32_t (int32_t *dst, int32_t inc) */ movq %rdi, %rcx /* ; %rcx = dst */ movl %esi, %edx /* ; %edx = inc */ @@ -178,7 +178,7 @@ __rw_atomic_add32: /* ; **************************************************************************/ .globl __rw_atomic_add64 - TYPE_DIR (__rw_atomic_add64, STT_FUNC) + TYPE_DIR (__rw_atomic_add64, @function) __rw_atomic_add64: /* ; int64_t (int64_t *dst, int64_t inc) */ movq %rdi, %rcx /* ; %rcx = dst */ movq %rsi, %rdx /* ; %edx = inc */