From owner-p4-projects@FreeBSD.ORG Thu Sep 17 13:55:28 2009 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 43A54106568B; Thu, 17 Sep 2009 13:55:28 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 080EB1065670 for ; Thu, 17 Sep 2009 13:55:28 +0000 (UTC) (envelope-from stas@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D0E068FC0A for ; Thu, 17 Sep 2009 13:55:27 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n8HDtRS9092118 for ; Thu, 17 Sep 2009 13:55:27 GMT (envelope-from stas@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n8HDtRQg092116 for perforce@freebsd.org; Thu, 17 Sep 2009 13:55:27 GMT (envelope-from stas@freebsd.org) Date: Thu, 17 Sep 2009 13:55:27 GMT Message-Id: <200909171355.n8HDtRQg092116@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to stas@freebsd.org using -f From: Stanislav Sedov To: Perforce Change Reviews Cc: Subject: PERFORCE change 168610 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Sep 2009 13:55:28 -0000 http://perforce.freebsd.org/chv.cgi?CH=168610 Change 168610 by stas@stas_deglitch on 2009/09/17 13:55:08 - Drop some gratuitous whitespace changes. Affected files ... .. //depot/projects/valgrind/Makefile.tool.am#7 edit .. //depot/projects/valgrind/VEX/pub/libvex_guest_amd64.h#5 edit .. //depot/projects/valgrind/configure.in#13 edit Differences ... ==== //depot/projects/valgrind/Makefile.tool.am#7 (text+ko) ==== @@ -25,6 +25,7 @@ $(TOOL_DEPENDENCIES_@VGCONF_PLATFORM_SEC_CAPS@) $(TOOL_LDADD_COMMON) endif + TOOL_LDFLAGS_COMMON_LINUX = -static \ -Wl,-defsym,valt_load_address=@VALT_LOAD_ADDRESS@ \ -nodefaultlibs -nostartfiles -u _start ==== //depot/projects/valgrind/VEX/pub/libvex_guest_amd64.h#5 (text+ko) ==== @@ -191,7 +191,6 @@ extern ULong LibVEX_GuestAMD64_get_rflags ( /*IN*/VexGuestAMD64State* vex_state ); - /* Set the carry flag in the given state to 'new_carry_flag', which should be zero or one. */ extern @@ -199,6 +198,7 @@ LibVEX_GuestAMD64_put_rflag_c ( ULong new_carry_flag, /*MOD*/VexGuestAMD64State* vex_state ); + #if 0 /* Convert a saved x87 FPU image (as created by fsave) and write it into the supplied VexGuestX86State structure. The non-FP parts of @@ -214,6 +214,15 @@ void LibVEX_GuestX86_get_x87 ( /*IN*/VexGuestX86State* vex_state, /*OUT*/UChar* x87_state ); + +/* Given a 32-bit word containing native x86 %eflags values, set the + eflag-related fields in the supplied VexGuestX86State accordingly. + All other fields are left unchanged. */ + +extern +void LibVEX_GuestX86_put_eflags ( UInt eflags_native, + /*OUT*/VexGuestX86State* vex_state ); + #endif /* 0 */ #endif /* ndef __LIBVEX_PUB_GUEST_AMD64_H */ ==== //depot/projects/valgrind/configure.in#13 (text+ko) ==== @@ -73,6 +73,7 @@ AC_SUBST(ASFLAGS) ]) + # Check if 'diff' supports -u (universal diffs) and use it if possible. AC_MSG_CHECKING([for diff -u]) @@ -91,6 +92,7 @@ fi rm $tmpfile + # We don't want gcc < 3.0 AC_MSG_CHECKING([for a supported version of gcc])