[LLVMbugs] [Bug 5309] New: incorrect __SOFTFP__ breaks build on ARM

bugzilla-daemon at cs.uiuc.edu bugzilla-daemon at cs.uiuc.edu
Mon Oct 26 15:20:53 PDT 2009


http://llvm.org/bugs/show_bug.cgi?id=5309

           Summary: incorrect __SOFTFP__ breaks build on ARM
           Product: new-bugs
           Version: 2.6
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: new bugs
        AssignedTo: unassignedbugs at nondot.org
        ReportedBy: mist at c64.org
                CC: llvmbugs at cs.uiuc.edu


In lib/Target/ARM/ARMJITInfo.cpp, there are two instances of
#ifndef __SOFTFP__
which break building LLVM on (at least) ARM/Linux. All instances should be
replaced with:
#ifdef __VFP_FP__
(according to aKor)


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the llvm-bugs mailing list