diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-11-09 02:22:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-11-09 02:22:54 +0000 |
commit | 1698c2999c11cbbfa9b0c797047538a087382f62 (patch) | |
tree | b66f37fb8755a4cc105e910e4f7a5c2dd29d1eaa /llvm/utils/TableGen/InstrInfoEmitter.cpp | |
parent | c6389c10cc6634bec069fbd84f8213e7aaa8edd9 (diff) | |
download | bcm5719-llvm-1698c2999c11cbbfa9b0c797047538a087382f62.tar.gz bcm5719-llvm-1698c2999c11cbbfa9b0c797047538a087382f62.zip |
Remove M_2_ADDR_FLAG.
llvm-svn: 31583
Diffstat (limited to 'llvm/utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/InstrInfoEmitter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp index 0c5c4552035..deee320c5d5 100644 --- a/llvm/utils/TableGen/InstrInfoEmitter.cpp +++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp @@ -232,7 +232,6 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num, if (Inst.isCall) OS << "|M_CALL_FLAG"; if (Inst.isLoad) OS << "|M_LOAD_FLAG"; if (Inst.isStore || isStore) OS << "|M_STORE_FLAG"; - if (Inst.isTwoAddress) OS << "|M_2_ADDR_FLAG"; if (Inst.isPredicated) OS << "|M_PREDICATED"; if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR"; if (Inst.isCommutable) OS << "|M_COMMUTABLE"; |