# HG changeset patch # User Tassilo Philipp # Date 1663083831 -7200 # Node ID 5a46d46b318b968dfdb41151ee35851bc1bdbcdc # Parent f76dbea7a0c18f88098411d0562da15cacc73c67 - fixed wrong mode setting in test (ellipse mode needs to be set after this ptr for thiscalls) diff -r f76dbea7a0c1 -r 5a46d46b318b test/plain_c++/test_main.cc --- a/test/plain_c++/test_main.cc Tue Sep 13 17:32:24 2022 +0200 +++ b/test/plain_c++/test_main.cc Tue Sep 13 17:43:51 2022 +0200 @@ -253,8 +253,8 @@ /* ellipsis test w/ this pointer */ dcReset(pc); + dcArgPointer(pc, pThis); dcMode(pc, DC_CALL_C_ELLIPSIS); - dcArgPointer(pc, pThis); dcArgInt(pc, 23); dcMode(pc, DC_CALL_C_ELLIPSIS_VARARGS); dcArgInt(pc, -223);