summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineOperand.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-08-09 23:31:36 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-08-09 23:31:36 +0000
commit1134aae4e743290da2ad29a7ac76d3a1f9dcfce8 (patch)
tree05569eb1e6e4b27731f81088a79f4290d3cf4ac5 /include/llvm/CodeGen/MachineOperand.h
parent81a6995243380668e6f991fa4e11dd0a6e37e030 (diff)
downloadllvm-1134aae4e743290da2ad29a7ac76d3a1f9dcfce8.tar.gz
llvm-1134aae4e743290da2ad29a7ac76d3a1f9dcfce8.tar.bz2
llvm-1134aae4e743290da2ad29a7ac76d3a1f9dcfce8.tar.xz
Revert r161633-161634 "Partition use lists so defs always come before uses."
These commits broke a number of buildbots. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161640 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineOperand.h')
-rw-r--r--include/llvm/CodeGen/MachineOperand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineOperand.h b/include/llvm/CodeGen/MachineOperand.h
index adf20956a8..0cde75d1df 100644
--- a/include/llvm/CodeGen/MachineOperand.h
+++ b/include/llvm/CodeGen/MachineOperand.h
@@ -150,7 +150,7 @@ private:
struct { // For MO_Register.
// Register number is in SmallContents.RegNo.
- MachineOperand *Prev; // Access list for register. See MRI.
+ MachineOperand **Prev; // Access list for register.
MachineOperand *Next;
} Reg;