mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
build: Drop unnecessary volatile qualifiers from configure tests
Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #600
This commit is contained in:
parent
8a112c3c6e
commit
daf90bfa99
@ -1773,7 +1773,7 @@ endforeach
|
||||
# that then to silently fall back on emulated atomic ops just because
|
||||
# the user had the wrong build environment.
|
||||
atomictest = '''int main() {
|
||||
volatile int atomic = 2;
|
||||
int atomic = 2;
|
||||
__sync_bool_compare_and_swap (&atomic, 2, 3);
|
||||
return 0;
|
||||
}
|
||||
@ -1883,6 +1883,7 @@ endif
|
||||
|
||||
# FIXME: we should make it print the result and always return 0, so that
|
||||
# the output in meson shows up as green
|
||||
# volatile is needed here to avoid optimisations in the test
|
||||
stack_grows_check_prog = '''
|
||||
volatile int *a = 0, *b = 0;
|
||||
void f (int i) {
|
||||
|
Loading…
Reference in New Issue
Block a user