From 7baaf09f9ff7dc8155e9e6eee5959761ed656ab2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 28 Sep 2004 18:34:14 +0000 Subject: [PATCH] Capture delay slot info git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16551 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Target.td | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/Target.td b/lib/Target/Target.td index d1f3e7455b2..780cf60f1ae 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -132,6 +132,7 @@ class Instruction { bit isCall = 0; // Is this instruction a call instruction? bit isTwoAddress = 0; // Is this a two address instruction? bit isTerminator = 0; // Is this part of the terminator for a basic block? + bit hasDelaySlot = 0; // Does this instruction have an delay slot? } -- 2.11.0