If a test case is not compiled on a specific platform, print "skipped"
to stdout. This helps identifying missing coverage on a given platform.

llvm-svn: 132300
diff --git a/compiler-rt/test/Unit/fixdfsivfp_test.c b/compiler-rt/test/Unit/fixdfsivfp_test.c
index a9f012c..c6102e2 100644
--- a/compiler-rt/test/Unit/fixdfsivfp_test.c
+++ b/compiler-rt/test/Unit/fixdfsivfp_test.c
@@ -43,6 +43,8 @@
         return 1;
     if (test__fixdfsivfp(-2147483648.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }