[AArch64] Remove unused IsDarwin & IsNotDarwin predicates (NFCI).
authorFlorian Hahn <florian.hahn@arm.com>
Tue, 11 Jul 2017 20:56:24 +0000 (20:56 +0000)
committerFlorian Hahn <florian.hahn@arm.com>
Tue, 11 Jul 2017 20:56:24 +0000 (20:56 +0000)
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

llvm-svn: 307706

llvm/lib/Target/AArch64/AArch64InstrInfo.td

index 3cd7ebd..0be1467 100644 (file)
@@ -313,9 +313,6 @@ def AArch64umaxv    : SDNode<"AArch64ISD::UMAXV", SDT_AArch64UnaryVec>;
 //===----------------------------------------------------------------------===//
 
 // 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).