From: Justin Seyster Date: Thu, 15 Jul 2010 23:30:55 +0000 (-0400) Subject: Minor formatting. X-Git-Tag: release-v1.0~80 X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=904cd2f987842394073905eda6ed274a2a836bf0;p=interaspect.git Minor formatting. --- diff --git a/src/aop-pointcut.c b/src/aop-pointcut.c index cb72672..587b097 100644 --- a/src/aop-pointcut.c +++ b/src/aop-pointcut.c @@ -33,10 +33,7 @@ #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; }