[llvm-commits] [llvm] r97626 - /llvm/trunk/include/llvm/CodeGen/MachineOperand.h
Evan Cheng
evan.cheng at apple.com
Tue Mar 2 17:37:50 PST 2010
Author: evancheng
Date: Tue Mar 2 19:37:50 2010
New Revision: 97626
URL: http://llvm.org/viewvc/llvm-project?rev=97626&view=rev
Log:
Ordering forward declarations.
Modified:
llvm/trunk/include/llvm/CodeGen/MachineOperand.h
Modified: llvm/trunk/include/llvm/CodeGen/MachineOperand.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineOperand.h?rev=97626&r1=97625&r2=97626&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineOperand.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineOperand.h Tue Mar 2 19:37:50 2010
@@ -19,14 +19,14 @@
namespace llvm {
-class ConstantFP;
class BlockAddress;
-class MachineBasicBlock;
+class ConstantFP;
class GlobalValue;
+class MachineBasicBlock;
class MachineInstr;
-class TargetMachine;
class MachineRegisterInfo;
class MDNode;
+class TargetMachine;
class raw_ostream;
/// MachineOperand class - Representation of each machine instruction operand.
More information about the llvm-commits
mailing list