diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-09-28 18:38:01 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-09-28 18:38:01 +0000 |
| commit | 9b0dfa3c0d9244128075e0abd1693e1c33492aed (patch) | |
| tree | 73f761c4f76a0dcaea444900fe4ab70101ef0611 /llvm/utils/TableGen/CodeGenTarget.cpp | |
| parent | 547b4d4a29408c0788175891cc2f788037cfc1ad (diff) | |
| download | bcm5719-llvm-9b0dfa3c0d9244128075e0abd1693e1c33492aed.tar.gz bcm5719-llvm-9b0dfa3c0d9244128075e0abd1693e1c33492aed.zip | |
Turn the hasDelaySlot flag into the M_DELAY_SLOT_FLAG
llvm-svn: 16553
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
| -rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index 49fd772d2e5..ba214051cde 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -197,6 +197,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isCall = R->getValueAsBit("isCall"); isTwoAddress = R->getValueAsBit("isTwoAddress"); isTerminator = R->getValueAsBit("isTerminator"); + hasDelaySlot = R->getValueAsBit("hasDelaySlot"); try { DagInit *DI = R->getValueAsDag("OperandList"); |

