|
|
| Bugzilla Link |
5309 |
| Resolution |
FIXED |
| Resolved on |
Mar 02, 2010 10:14 |
| Version |
2.6 |
| OS |
Linux |
| Reporter |
LLVM Bugzilla Contributor |
| CC |
@asl,@echristo |
Extended Description
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)