]> granicus.if.org Git - clang/commitdiff
[mips] Group all `-mabicalls` related checks in the single place. NFC
authorSimon Atanasyan <simon@atanasyan.com>
Thu, 10 Aug 2017 15:42:31 +0000 (15:42 +0000)
committerSimon Atanasyan <simon@atanasyan.com>
Thu, 10 Aug 2017 15:42:31 +0000 (15:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@310615 91177308-0d34-0410-b5e6-96231b3b80d8

test/Driver/mips-abicalls-warning.c
test/Driver/mips-longcalls-warning.c [deleted file]

index 6bfa961b727735a6443a196c6127a092785708be..848a5bfce52020c2fffab3b7333ef78cd11dc579 100644 (file)
@@ -1,3 +1,9 @@
 // REQUIRES: mips-registered-target
 // RUN: %clang -### -c -target mips64-mti-elf -fno-PIC -mabicalls %s 2>&1 | FileCheck %s
 // CHECK: warning: ignoring '-mabicalls' option as it cannot be used with non position-independent code and the N64 ABI
+
+// RUN: %clang -### -c -target mips-mti-elf -mlong-calls %s 2>&1 | FileCheck -check-prefix=LONGCALL-IMP %s
+// LONGCALL-IMP: warning: ignoring '-mlong-calls' option as it is not currently supported with the implicit usage of -mabicalls
+
+// RUN: %clang -### -c -target mips-mti-elf -mlong-calls -mabicalls %s 2>&1 | FileCheck -check-prefix=LONGCALL-EXP %s
+// LONGCALL-EXP: warning: ignoring '-mlong-calls' option as it is not currently supported with -mabicalls
diff --git a/test/Driver/mips-longcalls-warning.c b/test/Driver/mips-longcalls-warning.c
deleted file mode 100644 (file)
index c19d6d8..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-// REQUIRES: mips-registered-target
-// RUN: %clang -### -c -target mips-mti-elf -mlong-calls %s 2>&1 | FileCheck -check-prefix=IMPLICIT %s
-// IMPLICIT: warning: ignoring '-mlong-calls' option as it is not currently supported with the implicit usage of -mabicalls
-
-// RUN: %clang -### -c -target mips-mti-elf -mlong-calls -mabicalls %s 2>&1 | FileCheck -check-prefix=EXPLICIT %s
-// EXPLICIT: warning: ignoring '-mlong-calls' option as it is not currently supported with -mabicalls