[llvm] r307706 - [AArch64] Remove unused IsDarwin & IsNotDarwin predicates (NFCI).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 11 13:56:24 PDT 2017


Author: fhahn
Date: Tue Jul 11 13:56:24 2017
New Revision: 307706

URL: http://llvm.org/viewvc/llvm-project?rev=307706&view=rev
Log:
 [AArch64] Remove unused IsDarwin & IsNotDarwin predicates (NFCI). 

Reviewers: t.p.northover, rengolin

Reviewed By: t.p.northover

Subscribers: aemerson, javed.absar, llvm-commits, kristof.beyls

Differential Revision: https://reviews.llvm.org/D35266

Modified:
    llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.td

Modified: llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.td?rev=307706&r1=307705&r2=307706&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.td (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64InstrInfo.td Tue Jul 11 13:56:24 2017
@@ -313,9 +313,6 @@ def AArch64umaxv    : SDNode<"AArch64ISD
 //===----------------------------------------------------------------------===//
 
 // AArch64 Instruction Predicate Definitions.
-def IsDarwin  : Predicate<"Subtarget->isTargetDarwin()">;
-def IsNotDarwin: Predicate<"!Subtarget->isTargetDarwin()">;
-
 // We could compute these on a per-module basis but doing so requires accessing
 // the Function object through the <Target>Subtarget and objections were raised
 // to that (see post-commit review comments for r301750).




More information about the llvm-commits mailing list