Remove broken doxygen comments
authorChris Lattner <sabre@nondot.org>
Thu, 15 Jan 2004 04:37:10 +0000 (04:37 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 15 Jan 2004 04:37:10 +0000 (04:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10869 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/BasicBlock.h

index 9f78bc7467bd029a7ae6ac285500b91d60c5d16f..510124374263cc2552a939f8b25d5715a246bdaf 100644 (file)
@@ -6,24 +6,23 @@
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
 // 
 //===----------------------------------------------------------------------===//
-///
-/// \class BasicBlock
-///
-/// This file contains the declaration of the BasicBlock class, which represents
-/// a single basic block in the VM.
-///
-/// Note that basic blocks themselves are Value's, because they are referenced
-/// by instructions like branches and can go in switch tables and stuff...
-///
+//
+//
+// This file contains the declaration of the BasicBlock class, which represents
+// a single basic block in the VM.
+//
+// Note that basic blocks themselves are Value's, because they are referenced
+// by instructions like branches and can go in switch tables and stuff...
+//
 ///===---------------------------------------------------------------------===//
-///
-/// Note that well formed basic blocks are formed of a list of instructions 
-/// followed by a single TerminatorInst instruction.  TerminatorInst's may not
-/// occur in the middle of basic blocks, and must terminate the blocks.
-///
-/// This code allows malformed basic blocks to occur, because it may be useful
-/// in the intermediate stage modification to a program.
-///
+//
+// Note that well formed basic blocks are formed of a list of instructions 
+// followed by a single TerminatorInst instruction.  TerminatorInst's may not
+// occur in the middle of basic blocks, and must terminate the blocks.
+//
+// This code allows malformed basic blocks to occur, because it may be useful
+// in the intermediate stage modification to a program.
+//
 //===----------------------------------------------------------------------===//
 
 #ifndef LLVM_BASICBLOCK_H