Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 1 | // Check that we extract --no-demangle from '-Xlinker' and '-Wl,', since that |
| 2 | // was a collect2 argument. |
| 3 | |
Sebastian Pop | 9ec60df | 2012-01-20 22:01:23 +0000 | [diff] [blame] | 4 | // RUN: %clang -target i386-apple-darwin9 -### \ |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 5 | // RUN: -Xlinker one -Xlinker --no-demangle \ |
| 6 | // RUN: -Wl,two,--no-demangle,three -Xlinker four %s 2> %t |
Nick Lewycky | e276cfc | 2012-08-17 03:39:16 +0000 | [diff] [blame] | 7 | // RUN: FileCheck -check-prefix=DARWIN < %t %s |
Daniel Dunbar | f78925f | 2010-06-14 21:23:12 +0000 | [diff] [blame] | 8 | // |
Nick Lewycky | e276cfc | 2012-08-17 03:39:16 +0000 | [diff] [blame] | 9 | // RUN: %clang -target x86_64-pc-linux-gnu -### \ |
| 10 | // RUN: -Xlinker one -Xlinker --no-demangle \ |
| 11 | // RUN: -Wl,two,--no-demangle,three -Xlinker four %s 2> %t |
| 12 | // RUN: FileCheck -check-prefix=LINUX < %t %s |
| 13 | // |
| 14 | // DARWIN-NOT: --no-demangle |
| 15 | // DARWIN: "one" "two" "three" "four" |
| 16 | // LINUX: "--no-demangle" "one" "two" "three" "four" |