mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-26 00:34:17 -07:00
Differentiate argerr/42.c and argerr/43.c so that the msvc incremental linker reliably updates the executable when we compile one and then the other.
Copied from Perforce Change: 192467 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
a8ac974415
commit
072f30009d
2 changed files with 3 additions and 5 deletions
|
|
@ -21,12 +21,9 @@ static void test(void)
|
|||
{
|
||||
mps_arena_t arena;
|
||||
mps_pool_t pool;
|
||||
mps_thr_t thread;
|
||||
|
||||
cdie(mps_arena_create(&arena, mps_arena_class_vm(), mmqaArenaSIZE), "create arena");
|
||||
|
||||
cdie(mps_thread_reg(&thread, arena), "register thread");
|
||||
|
||||
cdie(
|
||||
mps_pool_create(
|
||||
&pool, arena, mps_class_mv(),
|
||||
|
|
@ -34,7 +31,7 @@ static void test(void)
|
|||
"create pool");
|
||||
|
||||
mps_pool_destroy(pool);
|
||||
|
||||
mps_arena_destroy(arena);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
|
|
|
|||
|
|
@ -34,7 +34,8 @@ static void test(void)
|
|||
"create pool");
|
||||
|
||||
mps_pool_destroy(pool);
|
||||
|
||||
mps_thread_dereg(thread);
|
||||
mps_arena_destroy(arena);
|
||||
}
|
||||
|
||||
int main(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue