cocci.inria.fr archive mirror
 help / color / mirror / Atom feed
From: Markus Elfring <Markus.Elfring@web.de>
To: Coccinelle <cocci@systeme.lip6.fr>
Subject: [Cocci] Adding code after function return types with SmPL
Date: Mon, 7 Oct 2019 14:48:15 +0200	[thread overview]
Message-ID: <3499128b-307a-eba3-7d48-1b30dda48f8b@web.de> (raw)

Hello,

I would like to try the following transformation approach out with
the software combination “Coccinelle 1.0.8-00004-g842075f7”.

@addition@
identifier f;
type rt != void;
@@
 rt
+__must_check
 f(...);


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
plus: parse error:
  File "use_must_check.cocci", line 7, column 1, charpos = 64
  around = 'f',
  whole content =  f(...);


@is_void@
identifier f;
position p;
@@
 void f@p(...);

@addition@
identifier f;
position p != is_void.p;
type rt;
@@
 rt
+__must_check
 f@p(...);


elfring@Sonne:~/Projekte/Coccinelle/janitor> spatch --parse-cocci use_must_check2.cocci
init_defs_builtins: /usr/local/bin/../lib/coccinelle/standard.h
plus: parse error:
  File "use_must_check2.cocci", line 14, column 1, charpos = 137
  around = 'f',
  whole content =  f@p(...);



Will the addition of such an annotation in a function declaration
become supported for the semantic patch language?

Regards,
Markus
_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

             reply	other threads:[~2019-10-07 12:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-07 12:48 Markus Elfring [this message]
2019-10-07 12:48 [Cocci] Adding code after function return types with SmPL Markus Elfring
2019-10-07 20:44 ` Julia Lawall
2019-10-08 11:56   ` Markus Elfring

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3499128b-307a-eba3-7d48-1b30dda48f8b@web.de \
    --to=markus.elfring@web.de \
    --cc=cocci@systeme.lip6.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).