aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocLinearScan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r--lib/CodeGen/RegAllocLinearScan.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp
index 75d213de11..53fb1da606 100644
--- a/lib/CodeGen/RegAllocLinearScan.cpp
+++ b/lib/CodeGen/RegAllocLinearScan.cpp
@@ -227,14 +227,14 @@ bool RA::runOnMachineFunction(MachineFunction &fn) {
// reserve R32: EDI, EBX,
// R16: DI, BX,
- // R8: DH, BH,
+ // R8: BH, BL
// RFP: FP5, FP6
reserved_.push_back(19); /* EDI */
reserved_.push_back(17); /* EBX */
reserved_.push_back(12); /* DI */
reserved_.push_back( 7); /* BX */
- reserved_.push_back(11); /* DH */
reserved_.push_back( 4); /* BH */
+ reserved_.push_back( 5); /* BL */
reserved_.push_back(28); /* FP5 */
reserved_.push_back(29); /* FP6 */