diff options
author | Chris Lattner <sabre@nondot.org> | 2004-09-28 18:34:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-09-28 18:34:14 +0000 |
commit | 7baaf09f9ff7dc8155e9e6eee5959761ed656ab2 (patch) | |
tree | e22c09c23d7a3f4f20a6f92cfa58808cb4d86d6a | |
parent | dcc4a6f705bacb66b98c58bb3b8c738d3e6df37b (diff) |
Capture delay slot info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16551 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Target.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td index d1f3e7455b..780cf60f1a 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? } |