mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
remove some code that isn't ready for prime time
llvm-svn: 23346
This commit is contained in:
parent
c4ae94aa32
commit
72cfebc71b
@ -701,8 +701,8 @@ void DAGISelEmitter::ParseAndResolveInstructions() {
|
||||
// the instruction. This determines the order that operands are added to
|
||||
// the machine instruction the node corresponds to.
|
||||
unsigned NumResults = SetDestinations.size();
|
||||
assert(NumResults == 1 &&
|
||||
"This code only handles a single set right now!");
|
||||
//assert(NumResults == 1 &&
|
||||
// "This code only handles a single set right now!");
|
||||
|
||||
unsigned NumOperands = 0;
|
||||
|
||||
|
@ -282,10 +282,6 @@ namespace llvm {
|
||||
DAGInstruction(TreePattern *TP, unsigned results, unsigned ops)
|
||||
: Pattern(TP), NumResults(results), NumOperands(ops) {}
|
||||
|
||||
~DAGInstruction() {
|
||||
delete Pattern;
|
||||
}
|
||||
|
||||
TreePattern *getPattern() const { return Pattern; }
|
||||
unsigned getNumResults() const { return NumResults; }
|
||||
unsigned getNumOperands() const { return NumOperands; }
|
||||
|
Loading…
Reference in New Issue
Block a user