diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-24 09:16:49 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-24 09:16:49 +0000 |
commit | b1e5e661bbb980bad6134253636c8e500b7af356 (patch) | |
tree | 49e13de6ecc32e4ebd04b17f170f3c2f8a0bff0d /test/Driver | |
parent | 1752ee4849f4c37f5e03193e658be92650b0e65a (diff) | |
download | clang-b1e5e661bbb980bad6134253636c8e500b7af356.tar.gz |
Remove arch normalization from Driver, this should be unnecessary now that
things have moved to llvm::Triple.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79902 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver')
-rw-r--r-- | test/Driver/dragonfly.c | 2 | ||||
-rw-r--r-- | test/Driver/freebsd.c | 2 | ||||
-rw-r--r-- | test/Driver/openbsd.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/Driver/dragonfly.c b/test/Driver/dragonfly.c index 5d0241870f..201d1364e0 100644 --- a/test/Driver/dragonfly.c +++ b/test/Driver/dragonfly.c @@ -1,5 +1,5 @@ // RUN: clang -ccc-host-triple amd64-pc-dragonfly %s -### 2> %t.log && -// RUN: grep 'clang-cc" "-triple" "x86_64-pc-dragonfly"' %t.log && +// RUN: grep 'clang-cc" "-triple" "amd64-pc-dragonfly"' %t.log && // RUN: grep 'as" "-o" ".*\.o" ".*\.s' %t.log && // RUN: grep 'ld" "-dynamic-linker" ".*ld-elf.*" "-o" "a\.out" ".*crt1.o" ".*crti.o" ".*crtbegin.o" ".*\.o" "-L.*/gcc.*" .* "-lc" "-lgcc" ".*crtend.o" ".*crtn.o"' %t.log && // RUN: true diff --git a/test/Driver/freebsd.c b/test/Driver/freebsd.c index f2db110d74..e97854e90b 100644 --- a/test/Driver/freebsd.c +++ b/test/Driver/freebsd.c @@ -1,4 +1,4 @@ -// RUN: clang -ccc-clang-archs "" -ccc-host-triple ppc64-pc-freebsd8 %s -### 2> %t.log && +// RUN: clang -ccc-clang-archs "" -ccc-host-triple powerpc64-pc-freebsd8 %s -### 2> %t.log && // RUN: cat %t.log && // RUN: grep 'clang-cc" "-triple" "powerpc64-pc-freebsd8"' %t.log && // RUN: grep 'as" "-o" ".*\.o" ".*\.s' %t.log && diff --git a/test/Driver/openbsd.c b/test/Driver/openbsd.c index afdc338f5c..adcb2c9590 100644 --- a/test/Driver/openbsd.c +++ b/test/Driver/openbsd.c @@ -1,5 +1,5 @@ // RUN: clang -ccc-clang-archs "" -ccc-host-triple i686-pc-openbsd %s -### 2> %t.log && -// RUN: grep 'clang-cc" "-triple" "i386-pc-openbsd"' %t.log && +// RUN: grep 'clang-cc" "-triple" "i686-pc-openbsd"' %t.log && // RUN: grep 'as" "-o" ".*\.o" ".*\.s' %t.log && // RUN: grep 'ld" "-e" "__start" "--eh-frame-hdr" "-Bdynamic" "-dynamic-linker" ".*ld.so" "-o" "a\.out" ".*crt0.o" ".*crtbegin.o" ".*\.o" "-lgcc" "-lc" "-lgcc" ".*crtend.o"' %t.log && // RUN: true |