On 6 September 2016 at 08:46, Cornelia Huck <cornelia.h...@de.ibm.com> wrote: > The following changes since commit e87d397e5ef66276ccc49b829527d605ca07d0ad: > > Open 2.8 development tree (2016-09-05 11:38:54 +0100) > > are available in the git repository at: > > git://github.com/cohuck/qemu tags/s390x-20160906 > > for you to fetch changes up to f216f2122519e24f57e09103ea5beb4c43f241c0: > > s390x/cpumodel: implement QMP interface "query-cpu-model-baseline" > (2016-09-05 15:49:23 +0200) > > ---------------------------------------------------------------- > First (big) chunk of s390x updates: > - cpumodel support for s390x > - various fixes and improvements > > ----------------------------------------------------------------
Hi; I'm afraid this causes compile warnings with clang, which look like they're flagging up a genuine bug: CC ppc-softmmu/migration/savevm.o /Users/pm215/src/qemu-for-merges/target-s390x/cpu_models.c:254:11: warning: explicitly assigning value of variable of type 'FILE *' (aka 'struct __sFILE *') to itself [-Wself-assign] f = f, ~ ^ ~ /Users/pm215/src/qemu-for-merges/target-s390x/cpu_models.c:255:15: warning: explicitly assigning value of variable of type 'fprintf_function' (aka 'int (*)(FILE *, const char *, ...)') to itself [-Wself-assign] print = print, ~~~~~ ^ ~~~~~ 2 warnings generated. Looks like you forgot the '.' on the front of the field names in the structure initializer. thanks -- PMM