From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14430 invoked by alias); 23 Mar 2009 14:10:17 -0000 Received: (qmail 14422 invoked by uid 22791); 23 Mar 2009 14:10:17 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_33,SPF_PASS X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 23 Mar 2009 14:10:12 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 173AE60B800E for ; Mon, 23 Mar 2009 14:10:10 +0000 (GMT) Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QCnhVOAL0agm; Mon, 23 Mar 2009 14:10:08 +0000 (GMT) From: bugzilla-daemon@ecoscentric.com To: ecos-bugs@ecos.sourceware.org Subject: [Issue 1000701] Error building vectors.S for Thumb on AT91 targets X-Bugzilla-Reason: QAcontact X-Bugzilla-Type: newchanged X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: eCos X-Bugzilla-Component: HAL X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: nickg@ecoscentric.com X-Bugzilla-Status: NEW X-Bugzilla-Priority: normal X-Bugzilla-Assigned-To: jifl@ecoscentric.com X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: CC In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Mon, 23 Mar 2009 14:10:00 -0000 Message-Id: <20090323141007.B6DF93B40030@mail.ecoscentric.com> Mailing-List: contact ecos-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-bugs-owner@sourceware.org X-SW-Source: 2009/txt/msg00142.txt.bz2 http://bugs.ecos.sourceware.org/show_bug.cgi?id=1000701 Nick Garnett changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nickg@ecoscentric.com --- Comment #3 from Nick Garnett 2009-03-23 14:10:06 --- For eCosPro we converted all those mov's to use the following macro: .macro ldrc reg,val #ifdef __thumb__ ldr \reg,=\val #else mov \reg,#\val #endif .endm However, I believe that the assembler will convert an ldr into an equivalent mov if it can, so in theory just using ldr should be OK. Note that other changes may be needed to get thumb working on some of the older targets where thumb support was never fully tested. -- Configure issuemail: http://bugs.ecos.sourceware.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the issue.