Minor, non-functionality changing, formatting fix
authorChris Lattner <sabre@nondot.org>
Wed, 9 Oct 2002 00:25:32 +0000 (00:25 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 9 Oct 2002 00:25:32 +0000 (00:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4091 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/llvmAsmParser.y

index f3436dc78285344f89ff4b6e1fc220a3e5b1f2b5..8613a413ca40ac8d2887a43be6c01f9729fc191a 100644 (file)
@@ -992,20 +992,20 @@ ConstVal: Types '[' ConstVector ']' { // Nonempty unsized arr
     delete $1;
   };
 
-ConstVal : SIntType EINT64VAL {     // integral constants
+ConstVal : SIntType EINT64VAL {      // integral constants
     if (!ConstantSInt::isValueValidForType($1, $2))
       ThrowException("Constant value doesn't fit in type!");
     $$ = ConstantSInt::get($1, $2);
-  } 
-  | UIntType EUINT64VAL {           // integral constants
+  }
+  | UIntType EUINT64VAL {            // integral constants
     if (!ConstantUInt::isValueValidForType($1, $2))
       ThrowException("Constant value doesn't fit in type!");
     $$ = ConstantUInt::get($1, $2);
-  } 
-  | BOOL TRUE {                     // Boolean constants
+  }
+  | BOOL TRUE {                      // Boolean constants
     $$ = ConstantBool::True;
   }
-  | BOOL FALSE {                    // Boolean constants
+  | BOOL FALSE {                     // Boolean constants
     $$ = ConstantBool::False;
   }
   | FPType FPVAL {                   // Float & Double constants