[llvm] r268482 - [mips] Remove -mattr=+n64 and fix indentation in tailcall.ll RUN lines. NFC.

Daniel Sanders via llvm-commits llvm-commits at lists.llvm.org
Wed May 4 02:08:35 PDT 2016


Author: dsanders
Date: Wed May  4 04:08:35 2016
New Revision: 268482

URL: http://llvm.org/viewvc/llvm-project?rev=268482&view=rev
Log:
[mips] Remove -mattr=+n64 and fix indentation in tailcall.ll RUN lines. NFC.

-mattr=+n64 isn't the correct way to specify the ABI and N64 is already the
default for the RUN line concerned.


Modified:
    llvm/trunk/test/CodeGen/Mips/tailcall.ll

Modified: llvm/trunk/test/CodeGen/Mips/tailcall.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/tailcall.ll?rev=268482&r1=268481&r2=268482&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/tailcall.ll (original)
+++ llvm/trunk/test/CodeGen/Mips/tailcall.ll Wed May  4 04:08:35 2016
@@ -1,11 +1,11 @@
 ; RUN: llc -march=mipsel -relocation-model=pic -enable-mips-tail-calls < %s | \
-; RUN: FileCheck %s -check-prefix=PIC32
+; RUN:     FileCheck %s -check-prefix=PIC32
 ; RUN: llc -march=mipsel -relocation-model=static \
-; RUN: -enable-mips-tail-calls < %s | FileCheck %s -check-prefix=STATIC32
-; RUN: llc -march=mips64el -mcpu=mips64r2 -mattr=+n64 -enable-mips-tail-calls \
-; RUN: < %s | FileCheck %s -check-prefix=N64
+; RUN:     -enable-mips-tail-calls < %s | FileCheck %s -check-prefix=STATIC32
+; RUN: llc -march=mips64el -mcpu=mips64r2 -enable-mips-tail-calls \
+; RUN:     < %s | FileCheck %s -check-prefix=N64
 ; RUN: llc -march=mipsel -mattr=mips16 -relocation-model=pic \
-; RUN: -enable-mips-tail-calls < %s | FileCheck %s -check-prefix=PIC16
+; RUN:     -enable-mips-tail-calls < %s | FileCheck %s -check-prefix=PIC16
 
 @g0 = common global i32 0, align 4
 @g1 = common global i32 0, align 4




More information about the llvm-commits mailing list