~ppsspp/ppsspp/+git/armips:fmt

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

Branch merges

Branch information

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

Recent commits

a41f953... by Kingcom <email address hidden>

Use memory buffer for logging

68850a4... by Kingcom <email address hidden>

Format temp data with a memory buffer

09cc223... by Kingcom <email address hidden>

Disable multithreading

1c9c195... by Kingcom <email address hidden>

Use {fmt} for formatting instead of tinyformat

77441fc... by Kingcom <email address hidden>

Add another missing include for libc++

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