From 0d1e9a8e0401048b5619dd46afb744af7b028aff Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 3 Oct 2008 15:45:36 +0000 Subject: Switch the MachineOperand accessors back to the short names like isReg, etc., from isRegister, etc. llvm-svn: 57006 --- llvm/lib/CodeGen/StackSlotColoring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/StackSlotColoring.cpp') diff --git a/llvm/lib/CodeGen/StackSlotColoring.cpp b/llvm/lib/CodeGen/StackSlotColoring.cpp index c02765d042f..fe04657e297 100644 --- a/llvm/lib/CodeGen/StackSlotColoring.cpp +++ b/llvm/lib/CodeGen/StackSlotColoring.cpp @@ -220,7 +220,7 @@ bool StackSlotColoring::ColorSlots(MachineFunction &MF) { MachineInstr &MI = *MII; for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) { MachineOperand &MO = MI.getOperand(i); - if (!MO.isFrameIndex()) + if (!MO.isFI()) continue; int FI = MO.getIndex(); if (FI < 0) -- cgit v1.2.3