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/darwin-as.c | |
parent | 342f1f8b0a402c5a7f8c5055db7f60a7808f1687 (diff) | |
download | clang-1a1764bd15406f86d53c51b4c7f8a54afee2a541.tar.gz |
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/darwin-as.c')
-rw-r--r-- | test/Driver/darwin-as.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/Driver/darwin-as.c b/test/Driver/darwin-as.c index 7d4cdbfcd3..655319a13e 100644 --- a/test/Driver/darwin-as.c +++ b/test/Driver/darwin-as.c @@ -1,9 +1,11 @@ -// RUN: %clang -ccc-host-triple i386-apple-darwin10 -### -x assembler -c %s -static -dynamic 2>%t +// RUN: %clang -ccc-host-triple i386-apple-darwin10 -### -x assembler -c %s \ +// RUN: -no-integrated-as -static -dynamic 2>%t // RUN: FileCheck -check-prefix=STATIC_AND_DYNAMIC-32 --input-file %t %s // // CHECK-STATIC_AND_DYNAMIC-32: as{{(.exe)?}}" "-arch" "i386" "-force_cpusubtype_ALL" "-static" "-o" -// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### -x assembler -c %s -static 2>%t +// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -### -x assembler -c %s \ +// RUN: -no-integrated-as -static 2>%t // RUN: FileCheck -check-prefix=STATIC-64 --input-file %t %s // // CHECK-STATIC-64: as{{(.exe)?}}" "-arch" "x86_64" "-force_cpusubtype_ALL" "-o" @@ -13,4 +15,3 @@ // RUN: FileCheck -check-prefix=ARMV6 --input-file %t %s // // CHECK-ARMV6: as{{(.exe)?}}" "-arch" "armv6" "-o" - |