From: Sterling Augustine Date: Thu, 21 Mar 2019 23:30:50 +0000 (+0000) Subject: This test assumes that -rtlib defaults to libgcc. But that isn't true in the face... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=249cf79bade5af443c2a997b5cf645aa1a9e2843;p=clang This test assumes that -rtlib defaults to libgcc. But that isn't true in the face of -DCLANG_DEFAULT_RTLIB=compiler-rt. Subscribers: dberris, jdoerfert, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59674 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@356724 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/compiler-rt-unwind.c b/test/Driver/compiler-rt-unwind.c index 00024dfa7e..0ec067cbfc 100644 --- a/test/Driver/compiler-rt-unwind.c +++ b/test/Driver/compiler-rt-unwind.c @@ -2,13 +2,6 @@ // --unwindlib=XXX properly. // // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ -// RUN: --target=x86_64-unknown-linux \ -// RUN: --gcc-toolchain="" \ -// RUN: | FileCheck --check-prefix=RTLIB-EMPTY %s -// RTLIB-EMPTY: "{{.*}}lgcc" -// RTLIB-EMPTY: "{{.*}}-lgcc_s" -// -// RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ // RUN: --target=x86_64-unknown-linux -rtlib=libgcc \ // RUN: --gcc-toolchain="" \ // RUN: | FileCheck --check-prefix=RTLIB-GCC %s