]> git.proxmox.com Git - qemu.git/blobdiff - dyngen-exec.h
Update version and change for 0.12.3 release
[qemu.git] / dyngen-exec.h
index 86e61c3df1c108139359a13b533daf449a9b0345..0353f36cdd420cd4b7d32f4177859be59d3fca12 100644 (file)
@@ -117,7 +117,7 @@ extern int printf(const char *, ...);
 
 /* The return address may point to the start of the next instruction.
    Subtracting one gets us the call instruction itself.  */
-#if defined(__s390__)
+#if defined(__s390__) && !defined(__s390x__)
 # define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1))
 #elif defined(__arm__)
 /* Thumb return addresses have the low bit set, so we need to subtract two.