Fix utostr once and for all, by making there only be one function named
[oota-llvm.git] / include / llvm / Bytecode / Format.h
index 5620aa72112546215129b02c6a6f70c7e9485032..24d1ed67ee8023eb347d741c0872487c296fe648 100644 (file)
@@ -1,13 +1,13 @@
 //===-- llvm/Bytecode/Format.h - VM bytecode file format info ---*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
-// This header defines intrinsic constants that are useful to libraries that 
+// This header defines intrinsic constants that are useful to libraries that
 // need to hack on bytecode files directly, like the reader and writer.
 //
 //===----------------------------------------------------------------------===//
@@ -47,13 +47,13 @@ public:
     // tables for a function, allowing the indices used within the function to
     // be as small as possible.  This often allows the instructions to be
     // encoded more efficiently.
-    CompactionTable = 0x33,
+    CompactionTable = 0x33
   };
 
   /// In LLVM 1.3 format, the identifier and the size of the block are
-  /// encoded into a single vbr_uint32 with 5 bits for the block identifier 
-  /// and 27-bits for block length. This limits blocks to a maximum of 
-  /// 128MBytes of data, and block types to 31 which should be sufficient 
+  /// encoded into a single vbr_uint32 with 5 bits for the block identifier
+  /// and 27-bits for block length. This limits blocks to a maximum of
+  /// 128MBytes of data, and block types to 31 which should be sufficient
   /// for the foreseeable usage. Because the values of block identifiers MUST
   /// fit within 5 bits (values 1-31), this enumeration is used to ensure
   /// smaller values are used for 1.3 and subsequent bytecode versions.
@@ -80,7 +80,7 @@ public:
 
     // InstructionList - The instructions in the body of a function.  This
     // superceeds the old BasicBlock node used in LLVM 1.0.
-    InstructionListBlockID = 0x07, ///< 1.3 identifier for insruction list      
+    InstructionListBlockID = 0x07, ///< 1.3 identifier for insruction list
 
     // CompactionTable - blocks with this id are used to define local remapping
     // tables for a function, allowing the indices used within the function to