diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-11 23:06:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-11 23:06:52 +0000 |
commit | 71520a867d5c3d34762cef78c10fe5b54324537e (patch) | |
tree | 5bdecbda90b566debd139bbdbcb1ac9ff29c7092 /llvm/utils/TableGen/CodeEmitterGen.h | |
parent | 571419bae6765653c47967ba5462c6e06571a49c (diff) | |
download | bcm5719-llvm-71520a867d5c3d34762cef78c10fe5b54324537e.tar.gz bcm5719-llvm-71520a867d5c3d34762cef78c10fe5b54324537e.zip |
Revert r134921, 134917, 134908 and 134907. They're causing failures
in multiple buildbots.
llvm-svn: 134936
Diffstat (limited to 'llvm/utils/TableGen/CodeEmitterGen.h')
-rw-r--r-- | llvm/utils/TableGen/CodeEmitterGen.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/utils/TableGen/CodeEmitterGen.h b/llvm/utils/TableGen/CodeEmitterGen.h index af890bfe247..a874d970fea 100644 --- a/llvm/utils/TableGen/CodeEmitterGen.h +++ b/llvm/utils/TableGen/CodeEmitterGen.h @@ -35,11 +35,11 @@ private: void emitMachineOpEmitter(raw_ostream &o, const std::string &Namespace); void emitGetValueBit(raw_ostream &o, const std::string &Namespace); void reverseBits(std::vector<Record*> &Insts); - int getVariableBit(const std::string &VarName, const BitsInit *BI, int bit); + int getVariableBit(const std::string &VarName, BitsInit *BI, int bit); std::string getInstructionCase(Record *R, CodeGenTarget &Target); void - AddCodeToMergeInOperand(Record *R, const BitsInit *BI, - const std::string &VarName, unsigned &NumberedOp, + AddCodeToMergeInOperand(Record *R, BitsInit *BI, const std::string &VarName, + unsigned &NumberedOp, std::string &Case, CodeGenTarget &Target); }; |