quebex

A software analysis framework built around the QBE intermediate language

git clone https://git.8pit.net/quebex.git

 1// SPDX-FileCopyrightText: 2024 University of Bremen
 2//
 3// SPDX-License-Identifier: MIT
 4
 5int entry(int a, int b) {
 6	int r;
 7
 8	if (a < b) {
 9		if (a < 5) {
10			return 3;
11		} else {
12			return 2;
13		}
14	} else {
15		return 1;
16	}
17}