summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-03-15 18:17:48 +0000
committerChris Bieneman <beanz@apple.com>2016-03-15 18:17:48 +0000
commit348de81e9a51c56efe004a8f86a225b756c5a45a (patch)
tree511589be6f83ea5eac0ab3447925895b761bc2c3
parent7f2844f8f7874ae559376d0349ee2f5d00b2185e (diff)
downloadbcm5719-llvm-348de81e9a51c56efe004a8f86a225b756c5a45a.tar.gz
bcm5719-llvm-348de81e9a51c56efe004a8f86a225b756c5a45a.zip
Fix a bot I broke.
The builtin library isn't added by the driver unless it exists, so we shouldn't check for it. I've marked this as a FIXME, because we probably should have a way to test this. llvm-svn: 263568
-rw-r--r--clang/test/Driver/darwin-ld.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/test/Driver/darwin-ld.c b/clang/test/Driver/darwin-ld.c
index e81d882a1b4..185ed886883 100644
--- a/clang/test/Driver/darwin-ld.c
+++ b/clang/test/Driver/darwin-ld.c
@@ -156,7 +156,10 @@
// RUN: FileCheck -check-prefix=LINK_IOSSIM_PROFILE %s < %t.log
// LINK_IOSSIM_PROFILE: {{ld(.exe)?"}}
// LINK_IOSSIM_PROFILE: libclang_rt.profile_iossim.a
-// LINK_IOSSIM_PROFILE: libclang_rt.ios.a
+
+// FIXME: Currently the builtin library is only added to the command line if it,
+// so we can't check for it here
+// FIXME_LINK_IOSSIM_PROFILE: libclang_rt.ios.a
// RUN: %clang -target arm64-apple-tvos8.3 -mtvos-version-min=8.3 -### %t.o 2> %t.log
// RUN: FileCheck -check-prefix=LINK_TVOS_ARM64 %s < %t.log
OpenPOWER on IntegriCloud