[llvm-commits] CVS: llvm/include/llvm/Support/Annotation.h

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 20:36:00 PDT 2005



Changes in directory llvm/include/llvm/Support:

Annotation.h updated: 1.18 -> 1.19
---
Log message:

Convert tabs to spaces


---
Diffs of the changes:  (+5 -5)

 Annotation.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/include/llvm/Support/Annotation.h
diff -u llvm/include/llvm/Support/Annotation.h:1.18 llvm/include/llvm/Support/Annotation.h:1.19
--- llvm/include/llvm/Support/Annotation.h:1.18	Thu Apr 21 15:44:59 2005
+++ llvm/include/llvm/Support/Annotation.h	Thu Apr 21 22:35:49 2005
@@ -132,10 +132,10 @@
   inline Annotation *unlinkAnnotation(AnnotationID ID) const {
     for (Annotation **A = &AnnotationList; *A; A = &((*A)->Next))
       if ((*A)->getID() == ID) {
-	Annotation *Ret = *A;
-	*A = Ret->Next;
-	Ret->Next = 0;
-	return Ret;
+        Annotation *Ret = *A;
+        *A = Ret->Next;
+        Ret->Next = 0;
+        return Ret;
       }
     return 0;
   }
@@ -187,7 +187,7 @@
   // Annotable::getOrCreateAnnotation method.
   //
   static void registerAnnotationFactory(AnnotationID ID, Factory Func,
-					void *ExtraData = 0);
+                                        void *ExtraData = 0);
 
   // createAnnotation - Create an annotation of the specified ID for the
   // specified object, using a register annotation creation function.






More information about the llvm-commits mailing list