diff options
author | Kaelyn Takata <rikka@google.com> | 2014-09-22 18:06:01 +0000 |
---|---|---|
committer | Kaelyn Takata <rikka@google.com> | 2014-09-22 18:06:01 +0000 |
commit | 4dc3a30b0e3e99c3452425d11c258dee7fffca74 (patch) | |
tree | 93c3f82b18077b3c138862ce591ceda4ed02b5c4 /test/CodeGen | |
parent | b6d4ef4fac0f5d3c4b987370d72864449d03628d (diff) | |
download | clang-4dc3a30b0e3e99c3452425d11c258dee7fffca74.tar.gz |
Fix test/CodeGen/mips-varargs.c to use %clang_cc1
Only tests under test/Driver should use %clang, and test/CodeGen in
particular must always use %clang_cc1.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@218260 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/mips-varargs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/mips-varargs.c b/test/CodeGen/mips-varargs.c index 6a5a88d2d7..aa7dcf0d01 100644 --- a/test/CodeGen/mips-varargs.c +++ b/test/CodeGen/mips-varargs.c @@ -1,6 +1,6 @@ -// RUN: %clang -target mips-unknown-linux -O3 -S -o - -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=O32 -// RUN: %clang -target mips64-unknown-linux -O3 -S -o - -emit-llvm -mabi=n32 %s | FileCheck %s -check-prefix=ALL -check-prefix=N32 -// RUN: %clang -target mips64-unknown-linux -O3 -S -o - -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=N64 +// RUN: %clang_cc1 -triple mips-unknown-linux -O3 -o - -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=O32 +// RUN: %clang_cc1 -triple mips64-unknown-linux -O3 -o - -emit-llvm -target-abi n32 %s | FileCheck %s -check-prefix=ALL -check-prefix=N32 +// RUN: %clang_cc1 -triple mips64-unknown-linux -O3 -o - -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=N64 #include <stdarg.h> |