1/* SPDX-License-Identifier: LGPL-2.1-or-later */ 2@@ 3expression x, y, z; 4@@ 5- z = x; 6- x = y; 7- y = z; 8+ SWAP_TWO(x, y); 9