diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2011-04-19 20:50:32 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2011-04-19 20:50:32 +0000 |
commit | 4322a7d2c68643b79a098d59a9fbc2a3a1ee70c2 (patch) | |
tree | 76637a39eb162124333fe868361d2ad7236274be /compiler-rt | |
parent | f5f4439265edc37a1c43730cc1578d1212e9c54f (diff) | |
download | bcm5719-llvm-4322a7d2c68643b79a098d59a9fbc2a3a1ee70c2.tar.gz bcm5719-llvm-4322a7d2c68643b79a098d59a9fbc2a3a1ee70c2.zip |
More fixes for missed includes
llvm-svn: 129807
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/lib/floatsidf.c | 1 | ||||
-rw-r--r-- | compiler-rt/lib/floatsisf.c | 1 | ||||
-rw-r--r-- | compiler-rt/lib/floatunsidf.c | 1 | ||||
-rw-r--r-- | compiler-rt/lib/floatunsisf.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/floatsidf.c b/compiler-rt/lib/floatsidf.c index 74cb66b2aac..72273353ac5 100644 --- a/compiler-rt/lib/floatsidf.c +++ b/compiler-rt/lib/floatsidf.c @@ -12,6 +12,7 @@ // mode. // //===----------------------------------------------------------------------===// +#include "abi.h" #define DOUBLE_PRECISION #include "fp_lib.h" diff --git a/compiler-rt/lib/floatsisf.c b/compiler-rt/lib/floatsisf.c index a981391b0c0..e5250ffd602 100644 --- a/compiler-rt/lib/floatsisf.c +++ b/compiler-rt/lib/floatsisf.c @@ -12,6 +12,7 @@ // mode. // //===----------------------------------------------------------------------===// +#include "abi.h" #define SINGLE_PRECISION #include "fp_lib.h" diff --git a/compiler-rt/lib/floatunsidf.c b/compiler-rt/lib/floatunsidf.c index 0722248ddfe..37562996a41 100644 --- a/compiler-rt/lib/floatunsidf.c +++ b/compiler-rt/lib/floatunsidf.c @@ -12,6 +12,7 @@ // mode. // //===----------------------------------------------------------------------===// +#include "abi.h" #define DOUBLE_PRECISION #include "fp_lib.h" diff --git a/compiler-rt/lib/floatunsisf.c b/compiler-rt/lib/floatunsisf.c index 3dc1cd442ba..14ef10307f7 100644 --- a/compiler-rt/lib/floatunsisf.c +++ b/compiler-rt/lib/floatunsisf.c @@ -12,6 +12,7 @@ // mode. // //===----------------------------------------------------------------------===// +#include "abi.h" #define SINGLE_PRECISION #include "fp_lib.h" |