Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78163 - trunk/libs/context/src/asm
From: oliver.kowalke_at_[hidden]
Date: 2012-04-23 15:56:39


Author: olli
Date: 2012-04-23 15:56:38 EDT (Mon, 23 Apr 2012)
New Revision: 78163
URL: http://svn.boost.org/trac/boost/changeset/78163

Log:
context: fix type inf ppc asm (%r6)

Text files modified:
   trunk/libs/context/src/asm/fcontext_ppc32_sysv_elf_gas.S | 2 +-
   trunk/libs/context/src/asm/fcontext_ppc64_sysv_elf_gas.S | 2 +-
   2 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/context/src/asm/fcontext_ppc32_sysv_elf_gas.S
==============================================================================
--- trunk/libs/context/src/asm/fcontext_ppc32_sysv_elf_gas.S (original)
+++ trunk/libs/context/src/asm/fcontext_ppc32_sysv_elf_gas.S 2012-04-23 15:56:38 EDT (Mon, 23 Apr 2012)
@@ -98,7 +98,7 @@
     stw %r0, 84(%r3) # save LR
     stw %r0, 88(%r3) # save LR as PC
 
- cmpwi cr7, r6, 0 # test if fpu env should be preserved
+ cmpwi cr7, %r6, 0 # test if fpu env should be preserved
     beq cr7, 1f
 
     stfd %f14, 100(%r3) # save F14

Modified: trunk/libs/context/src/asm/fcontext_ppc64_sysv_elf_gas.S
==============================================================================
--- trunk/libs/context/src/asm/fcontext_ppc64_sysv_elf_gas.S (original)
+++ trunk/libs/context/src/asm/fcontext_ppc64_sysv_elf_gas.S 2012-04-23 15:56:38 EDT (Mon, 23 Apr 2012)
@@ -119,7 +119,7 @@
     std %r0, 168(%r3) # save LR
     std %r0, 176(%r3) # save LR as PC
 
- cmpwi cr7, r6, 0 # test if fpu env should be preserved
+ cmpwi cr7, %r6, 0 # test if fpu env should be preserved
     beq cr7, 1f
 
     stfd %f14, 200(%r3) # save F14


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk