ObjFW  Check-in [a655ba9020]

Overview
Comment:exception.m: Fix wrong type in _Unwind_Exception.

This caused the landingpad to be 0 on MIPS/N32.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a655ba90200ab6b331721f783bdf0c6772067a98eea5746ac800a26af00f9de2
User & Date: js on 2013-12-14 11:14:58
Other Links: manifest | tags
Context
2013-12-15
14:29
Update install-sh. check-in: f80b5d78f0 user: js tags: trunk
2013-12-14
11:14
exception.m: Fix wrong type in _Unwind_Exception. check-in: a655ba9020 user: js tags: trunk
03:07
configure.ac: Fix -Wcast-align check. check-in: 1d8122fbc9 user: js tags: trunk
Changes

Modified src/runtime/exception.m from [9e3f15e824] to [d295243776].

92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
		} pr_cache;
		long long int : 0;
#else
		/*
		 * The Itanium Exception ABI says to have those and never touch
		 * them.
		 */
		uintptr_t private1, private2;
#endif
	} exception;
	id object;
#if !defined(__arm__) && !defined(__ARM__)
	uintptr_t landingpad;
	intptr_t filter;
#endif







|







92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
		} pr_cache;
		long long int : 0;
#else
		/*
		 * The Itanium Exception ABI says to have those and never touch
		 * them.
		 */
		uint64_t private1, private2;
#endif
	} exception;
	id object;
#if !defined(__arm__) && !defined(__ARM__)
	uintptr_t landingpad;
	intptr_t filter;
#endif