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 | 6652223bd68f79bbd5f94659d9f2f6e2871454b1 (patch) | |
| tree | e272616e11e6fd73352d2b515c7204918701052a /llvm/lib/Target | |
| parent | f9fa7cad4b3f34420dbc8b031221ffa8f5e5f674 (diff) | |
| download | bcm5719-llvm-6652223bd68f79bbd5f94659d9f2f6e2871454b1.tar.gz bcm5719-llvm-6652223bd68f79bbd5f94659d9f2f6e2871454b1.zip | |
Capture delay slot info
llvm-svn: 16551
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/Target.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/Target.td b/llvm/lib/Target/Target.td index d1f3e7455b2..780cf60f1ae 100644 --- a/llvm/lib/Target/Target.td +++ b/llvm/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? } |

