[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1rc2-43-g8d2e066
mysql vizuser
noreply at mpich.org
Thu Dec 5 21:22:23 CST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".
The branch, master has been updated
via 8d2e0662bd2bcf163f283f4cc1c2a8104f6b4416 (commit)
from a0c4278f1400a73eb63c5106e2bd3b1a6565ad5a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/8d2e0662bd2bcf163f283f4cc1c2a8104f6b4416
commit 8d2e0662bd2bcf163f283f4cc1c2a8104f6b4416
Author: Nysal Jan K.A <jnysal at in.ibm.com>
Date: Tue Nov 19 10:47:48 2013 -0500
Fix MPI_Attr_put on big-endian systems
Cast the pointer to the correct type so that
it works on big-endian systems
Signed-off-by: Michael Blocksome <blocksom at us.ibm.com>
Signed-off-by: Junchao Zhang <jczhang at mcs.anl.gov>
diff --git a/src/binding/f77/buildiface b/src/binding/f77/buildiface
index 1b48294..1124934 100755
--- a/src/binding/f77/buildiface
+++ b/src/binding/f77/buildiface
@@ -2386,7 +2386,7 @@ sub addrint_in_decl {
}
sub addrint_in_arg {
my $count = $_[0];
- print $OUTFD "(void *)(*(MPIR_Pint *)v$count)";
+ print $OUTFD "(void *)((MPIR_Pint)*(MPI_Fint *)v$count)";
}
sub attrint_ctof {
-----------------------------------------------------------------------
Summary of changes:
src/binding/f77/buildiface | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list