Merge from emacs-24; up to 2014-03-24T03:06:35Z!dancol@dancol.org
[bpt/emacs.git] / admin / coccinelle / xsave.cocci
1 // Adjust users of XSAVE_POINTER and XSAVE_INTEGER.
2 @@
3 expression E;
4 @@
5 (
6 - XSAVE_POINTER (E)
7 + XSAVE_POINTER (E, 0)
8 |
9 - XSAVE_INTEGER (E)
10 + XSAVE_INTEGER (E, 1)
11 )