Fix indentation.
authorChris Lattner <sabre@nondot.org>
Mon, 17 Jan 2005 23:25:45 +0000 (23:25 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 17 Jan 2005 23:25:45 +0000 (23:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19649 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrBuilder.h

index 17dc38eb6da111a2987534f251347f1bdfaaafdd..65517e3b411a21bd504d118e8cbf8c1693a228f8 100644 (file)
@@ -33,25 +33,24 @@ namespace llvm {
 /// with BP or SP and Disp being offsetted accordingly.  The displacement may
 /// also include the offset of a global value.
 struct X86AddressMode {
-    enum {
-      RegBase,
-      FrameIndexBase,
-    } BaseType;
-
-    union {
-      unsigned Reg;
-      int FrameIndex;
-    } Base;
-
-    unsigned Scale;
-    unsigned IndexReg;
-    unsigned Disp;
-    GlobalValue *GV;
-
-    X86AddressMode() : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0),
-                       GV(NULL) {
-      Base.Reg = 0;
-    }
+  enum {
+    RegBase,
+    FrameIndexBase,
+  } BaseType;
+  
+  union {
+    unsigned Reg;
+    int FrameIndex;
+  } Base;
+  
+  unsigned Scale;
+  unsigned IndexReg;
+  unsigned Disp;
+  GlobalValue *GV;
+  
+  X86AddressMode() : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(0) {
+    Base.Reg = 0;
+  }
 };
 
 /// addDirectMem - This function is used to add a direct memory reference to the