diff options
author | Joerg Sonnenberger <joerg@bec.de> | 2015-03-08 21:08:39 +0000 |
---|---|---|
committer | Joerg Sonnenberger <joerg@bec.de> | 2015-03-08 21:08:39 +0000 |
commit | 6d7cb4668f826d6376e8c960b0fe7d078c09d3e5 (patch) | |
tree | f369a655eb01a0cbdcebd60a122e002d271bd129 /compiler-rt | |
parent | 531cf7f4916656c6d586618ad2d91edf14dbda00 (diff) | |
download | bcm5719-llvm-6d7cb4668f826d6376e8c960b0fe7d078c09d3e5.tar.gz bcm5719-llvm-6d7cb4668f826d6376e8c960b0fe7d078c09d3e5.zip |
Avoid warnings on !PowerPC
llvm-svn: 231609
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/test/builtins/Unit/fixunstfdi_test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/test/builtins/Unit/fixunstfdi_test.c b/compiler-rt/test/builtins/Unit/fixunstfdi_test.c index d0a5db7a9c9..a5a9460503b 100644 --- a/compiler-rt/test/builtins/Unit/fixunstfdi_test.c +++ b/compiler-rt/test/builtins/Unit/fixunstfdi_test.c @@ -11,10 +11,11 @@ // //===----------------------------------------------------------------------===// +#include <stdio.h> + #if _ARCH_PPC #include "int_lib.h" -#include <stdio.h> // Returns: convert a to a unsigned long long, rounding toward zero. // Negative values all become zero. |