ObjFW  Check-in [199985a18a]

Overview
Comment:runtime/exception.m: Fix a typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 199985a18a5adf220ae31c362b396a4123470790181ab658b365fee7b4d1b388
User & Date: js on 2017-02-26 11:36:20
Other Links: manifest | tags
Context
2017-02-26
12:45
More efficient Mac Roman -> UTF-8 conversion check-in: 230644c87b user: js tags: trunk
11:36
runtime/exception.m: Fix a typo check-in: 199985a18a user: js tags: trunk
2017-02-12
23:56
encodings: Make the page tables unsigned char[] check-in: 405d11522e user: js tags: trunk
Changes

Modified src/runtime/exception.m from [59e66d5415] to [120b0cc0b1].

423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
		}
	}

	return false;
#else
	uintptr_t callsite_landingpad, callsite_action;

	if ((uintptr_t)ip < 1)
		return false;

	do {
		callsite_landingpad = (uintptr_t)read_uleb128(&ptr);
		callsite_action = (uintptr_t)read_uleb128(&ptr);
	} while (--ip > 1);








|







423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
		}
	}

	return false;
#else
	uintptr_t callsite_landingpad, callsite_action;

	if ((intptr_t)ip < 1)
		return false;

	do {
		callsite_landingpad = (uintptr_t)read_uleb128(&ptr);
		callsite_action = (uintptr_t)read_uleb128(&ptr);
	} while (--ip > 1);