diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2011-06-23 05:38:06 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2011-06-23 05:38:06 +0000 |
commit | 115f2b95d5756319855249fe60aa91e273e3c191 (patch) | |
tree | 39412352c765ffdecce9cd0abdbd25cc137a8816 | |
parent | 64f857b4efe543026334dbe99c5c22a4b40b517f (diff) |
Fix this test on machines that don't run clang -cc1as when asked to assemble.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133688 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/noexecstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Driver/noexecstack.c b/test/Driver/noexecstack.c index 7431a193da..1f47728826 100644 --- a/test/Driver/noexecstack.c +++ b/test/Driver/noexecstack.c @@ -1 +1 @@ -// RUN: %clang -### %s -c -o tmp.o -Wa,--noexecstack 2>&1 | grep "mnoexecstack" +// RUN: %clang -### %s -c -o tmp.o -triple i686-pc-linux-gnu -integrated-as -Wa,--noexecstack 2>&1 | grep "mnoexecstack" |