diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-10-30 00:20:28 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-10-30 00:20:28 +0000 |
commit | 1a1764bd15406f86d53c51b4c7f8a54afee2a541 (patch) | |
tree | 9116c854601dffca8cf0f8d47727969131cb3416 /test/Driver/cfi.c | |
parent | 342f1f8b0a402c5a7f8c5055db7f60a7808f1687 (diff) |
Stop disabling integrated assembler with -static. <rdar://problem/10175391>
The integrated assembler seems to be working pretty well for -static code
now, so remove the hacks to disable it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver/cfi.c')
-rw-r--r-- | test/Driver/cfi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Driver/cfi.c b/test/Driver/cfi.c index b5c0c03e7a..36924b4e38 100644 --- a/test/Driver/cfi.c +++ b/test/Driver/cfi.c @@ -1,4 +1,5 @@ -// RUN: %clang -ccc-host-triple i386-apple-darwin10 -static -### %s 2>&1 | \ +// RUN: %clang -ccc-host-triple i386-apple-darwin10 \ +// RUN: -no-integrated-as -### %s 2>&1 | \ // RUN: FileCheck --check-prefix=CHECK-DARWIN %s // RUN: %clang -ccc-host-triple i386-pc-linux-gnu -static -### %s 2>&1 | \ |