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/unordsf2vfp_test.c b/compiler-rt/test/Unit/unordsf2vfp_test.c
index dedd7ec..3cadc81 100644
--- a/compiler-rt/test/Unit/unordsf2vfp_test.c
+++ b/compiler-rt/test/Unit/unordsf2vfp_test.c
@@ -42,6 +42,8 @@
         return 1;
     if (test__unordsf2vfp(1.0, 1.0))
         return 1;
+#else
+    printf("skipped\n");
 #endif
     return 0;
 }