Minor formatting.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Thu, 15 Jul 2010 23:30:55 +0000 (19:30 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Thu, 15 Jul 2010 23:34:34 +0000 (19:34 -0400)
src/aop-pointcut.c

index cb72672123f2458d8d7576b25dbc583a23dfd34f..587b097f55ed26e75f2355af34a6333a640792df 100644 (file)
 #include "aop.h"
 #include "aop-pointcut.h"
 
-/*
- * Creates a generic pointcut 
- * \return The default pointcut.
- */
+/* Allocates a pointcut and initializes it with default values. */
 struct aop_pointcut *
 create_pointcut (enum aop_pckind kind)
 {
@@ -54,9 +51,7 @@ create_pointcut (enum aop_pckind kind)
   return pc;
 }
 
-/*
-* Initialize a joinpoint with default values. 
-*/
+/* Initializes a joinpoint with default values. */
 void
 init_joinpoint (struct aop_joinpoint *jp, gimple_stmt_iterator *gsi,
                struct aop_pointcut *pc, gimple stmt)
@@ -64,5 +59,5 @@ init_joinpoint (struct aop_joinpoint *jp, gimple_stmt_iterator *gsi,
   jp->pc = pc;
   jp->gsi = gsi;
   jp->stmt = stmt;
-  jp->is_prepared = false;  
+  jp->is_prepared = false;
 }