~ppsspp/ppsspp/+git/armips:ci

Last commit made on 2021-12-30
Get this branch:
git clone -b ci https://git.launchpad.net/~ppsspp/ppsspp/+git/armips

Branch merges

Branch information

Name:
ci
Repository:
lp:~ppsspp/ppsspp/+git/armips

Recent commits

323d724... by Kingcom <email address hidden>

CI

d151c98... by Simon Eriksson <email address hidden>

Create Linux actions workflow

587c7bd... by Kingcom <email address hidden>

Fix build with libstdc++

c2735b4... by Kingcom <email address hidden>

Only parse function calls if the identifier is a function. Fixes #193

The function call syntax is ambiguous in certain MIPS opcodes such as
"lw a0,offset(a0)". Here, offset is intended to be used as a label
address, but was actually interpreted as a function call.

The ambiguity is resolved by only generating a function call if the
identifier actually refers to an existing function.

fc2869a... by Kingcom <email address hidden>

Merge pull request #211 from Kingcom/expressions

Slightly modernize expressions

a969419... by Kingcom <email address hidden>

Redesign Expression function handling

4971f1e... by Kingcom <email address hidden>

Use variant for ExpressionInternal values

17a4c82... by Kingcom <email address hidden>

Slightly modernize Expression

2629f07... by Kingcom <email address hidden>

Support equs in macros

d481fe7... by Kingcom <email address hidden>

Hide global architecture pointer

Having an explicit setter function makes it much easier to react to
changes