projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcc4a6f
)
Capture delay slot info
author
Chris Lattner
<sabre@nondot.org>
Tue, 28 Sep 2004 18:34:14 +0000
(18:34 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 28 Sep 2004 18:34:14 +0000
(18:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16551
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/Target.td
patch
|
blob
|
history
diff --git
a/lib/Target/Target.td
b/lib/Target/Target.td
index d1f3e7455b215232091055f4d8ee57c27fa56714..780cf60f1aeebfe9be6fdfdb522adcc0825b9760 100644
(file)
--- 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?
}