From d9e14d290d7a1931694b0af4ffbb30b7cd8deb2d Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Tue, 23 Sep 2014 08:58:04 +0000 Subject: [PATCH] [mips] Fix r218248's testcase to use -O1 instead of -O3. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@218298 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/mips-varargs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/CodeGen/mips-varargs.c b/test/CodeGen/mips-varargs.c index aa7dcf0d01..a98d07b9b6 100644 --- a/test/CodeGen/mips-varargs.c +++ b/test/CodeGen/mips-varargs.c @@ -1,6 +1,6 @@ -// 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 +// RUN: %clang_cc1 -triple mips-unknown-linux -o - -O1 -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=O32 +// RUN: %clang_cc1 -triple mips64-unknown-linux -o - -O1 -emit-llvm -target-abi n32 %s | FileCheck %s -check-prefix=ALL -check-prefix=N32 +// RUN: %clang_cc1 -triple mips64-unknown-linux -o - -O1 -emit-llvm %s | FileCheck %s -check-prefix=ALL -check-prefix=N64 #include -- 2.40.0