[llvm-commits] CVS: llvm/utils/TableGen/InstrInfoEmitter.cpp
Evan Cheng
evan.cheng at apple.com
Wed Nov 8 18:21:45 PST 2006
Changes in directory llvm/utils/TableGen:
InstrInfoEmitter.cpp updated: 1.50 -> 1.51
---
Log message:
Remove M_2_ADDR_FLAG.
---
Diffs of the changes: (+0 -1)
InstrInfoEmitter.cpp | 1 -
1 files changed, 1 deletion(-)
Index: llvm/utils/TableGen/InstrInfoEmitter.cpp
diff -u llvm/utils/TableGen/InstrInfoEmitter.cpp:1.50 llvm/utils/TableGen/InstrInfoEmitter.cpp:1.51
--- llvm/utils/TableGen/InstrInfoEmitter.cpp:1.50 Mon Nov 6 17:53:31 2006
+++ llvm/utils/TableGen/InstrInfoEmitter.cpp Wed Nov 8 20:21:31 2006
@@ -232,7 +232,6 @@
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";
More information about the llvm-commits
mailing list