mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-31 16:14:15 +00:00
Oops. Forgot these.
llvm-svn: 44969
This commit is contained in:
parent
295507d238
commit
c314c2daf1
@ -92,6 +92,7 @@ namespace llvm {
|
||||
bool isCall;
|
||||
bool isLoad;
|
||||
bool isStore;
|
||||
bool isImplicitDef;
|
||||
bool isPredicable;
|
||||
bool isConvertibleToThreeAddress;
|
||||
bool isCommutable;
|
||||
|
@ -384,6 +384,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr)
|
||||
isCall = R->getValueAsBit("isCall");
|
||||
isLoad = R->getValueAsBit("isLoad");
|
||||
isStore = R->getValueAsBit("isStore");
|
||||
isImplicitDef= R->getValueAsBit("isImplicitDef");
|
||||
bool isTwoAddress = R->getValueAsBit("isTwoAddress");
|
||||
isPredicable = R->getValueAsBit("isPredicable");
|
||||
isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress");
|
||||
|
@ -243,6 +243,7 @@ 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.isImplicitDef)OS << "|M_IMPLICIT_DEF_FLAG";
|
||||
if (Inst.isPredicable) OS << "|M_PREDICABLE";
|
||||
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
|
||||
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
|
||||
|
Loading…
Reference in New Issue
Block a user