Commit 09f8f310f4f53a24289682d3d28f4399d7bafc3b

Anthony Green 2011-02-28T15:36:07

More AIX fixes. rc9.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
diff --git a/.pc/aix-ibm-xlc/configure b/.pc/aix-ibm-xlc/configure
index 3927e91..c0f1087 100755
--- a/.pc/aix-ibm-xlc/configure
+++ b/.pc/aix-ibm-xlc/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1367,7 +1367,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1438,7 +1438,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1547,7 +1547,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2148,7 +2148,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3081,7 +3081,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14127,7 +14127,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14197,7 +14197,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/aix-ibm-xlc/configure.ac b/.pc/aix-ibm-xlc/configure.ac
index 2ab23fc..43f991d 100644
--- a/.pc/aix-ibm-xlc/configure.ac
+++ b/.pc/aix-ibm-xlc/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/bad-abi-fix/ChangeLog b/.pc/bad-abi-fix/ChangeLog
index 98ee86a..8ca0d03 100644
--- a/.pc/bad-abi-fix/ChangeLog
+++ b/.pc/bad-abi-fix/ChangeLog
@@ -94,7 +94,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/debug-build/configure b/.pc/debug-build/configure
index 3b2b563..8af7caf 100755
--- a/.pc/debug-build/configure
+++ b/.pc/debug-build/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1364,7 +1364,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1435,7 +1435,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1544,7 +1544,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2145,7 +2145,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3078,7 +3078,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14053,7 +14053,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14123,7 +14123,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/debug-build/configure.ac b/.pc/debug-build/configure.ac
index 88b5ffd..ebc90db 100644
--- a/.pc/debug-build/configure.ac
+++ b/.pc/debug-build/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/fix-grammar/ChangeLog b/.pc/fix-grammar/ChangeLog
index e084246..dbd9e14 100644
--- a/.pc/fix-grammar/ChangeLog
+++ b/.pc/fix-grammar/ChangeLog
@@ -14,7 +14,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/fix-ppc32/ChangeLog b/.pc/fix-ppc32/ChangeLog
index e164096..8e43dcf 100644
--- a/.pc/fix-ppc32/ChangeLog
+++ b/.pc/fix-ppc32/ChangeLog
@@ -116,7 +116,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/fix-xfails/ChangeLog b/.pc/fix-xfails/ChangeLog
index cc4e49f..5462f65 100644
--- a/.pc/fix-xfails/ChangeLog
+++ b/.pc/fix-xfails/ChangeLog
@@ -51,7 +51,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/fix_maxopt/ChangeLog b/.pc/fix_maxopt/ChangeLog
index ae76404..f81d906 100644
--- a/.pc/fix_maxopt/ChangeLog
+++ b/.pc/fix_maxopt/ChangeLog
@@ -111,7 +111,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/fix_maxopt/configure b/.pc/fix_maxopt/configure
index 1e0db64..e0a77d9 100755
--- a/.pc/fix_maxopt/configure
+++ b/.pc/fix_maxopt/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1367,7 +1367,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1438,7 +1438,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1547,7 +1547,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2148,7 +2148,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3081,7 +3081,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14129,7 +14129,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14199,7 +14199,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/hpux-mallinfo/ChangeLog b/.pc/hpux-mallinfo/ChangeLog
index 2eed7cf..2098c02 100644
--- a/.pc/hpux-mallinfo/ChangeLog
+++ b/.pc/hpux-mallinfo/ChangeLog
@@ -23,7 +23,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/interix/ChangeLog b/.pc/interix/ChangeLog
index 3a18564..01e4eed 100644
--- a/.pc/interix/ChangeLog
+++ b/.pc/interix/ChangeLog
@@ -57,7 +57,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/interix/configure b/.pc/interix/configure
index 62ee448..9157b50 100755
--- a/.pc/interix/configure
+++ b/.pc/interix/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1367,7 +1367,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1438,7 +1438,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1547,7 +1547,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2148,7 +2148,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3081,7 +3081,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14129,7 +14129,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14199,7 +14199,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/interix/configure.ac b/.pc/interix/configure.ac
index 3eb9d31..2b6d5d9 100644
--- a/.pc/interix/configure.ac
+++ b/.pc/interix/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/ios-fixes/ChangeLog b/.pc/ios-fixes/ChangeLog
index 4d0bb12..2328ce9 100644
--- a/.pc/ios-fixes/ChangeLog
+++ b/.pc/ios-fixes/ChangeLog
@@ -94,7 +94,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/ios/ChangeLog b/.pc/ios/ChangeLog
index 480d625..10b9988 100644
--- a/.pc/ios/ChangeLog
+++ b/.pc/ios/ChangeLog
@@ -28,7 +28,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/ios/configure.ac b/.pc/ios/configure.ac
index 31863cc..77f08a3 100644
--- a/.pc/ios/configure.ac
+++ b/.pc/ios/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/irix/ChangeLog b/.pc/irix/ChangeLog
index c974316..6db9cc4 100644
--- a/.pc/irix/ChangeLog
+++ b/.pc/irix/ChangeLog
@@ -72,7 +72,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/irix/include/ffi.h.in b/.pc/irix/include/ffi.h.in
index 18ced12..92b033f 100644
--- a/.pc/irix/include/ffi.h.in
+++ b/.pc/irix/include/ffi.h.in
@@ -86,11 +86,15 @@ extern "C" {
 #else
 # ifdef LLONG_MAX
 #  define FFI_LONG_LONG_MAX LLONG_MAX
+#  ifdef _AIX52 /* or newer has C99 LLONG_MAX */
+#   undef FFI_64_BIT_MAX
+#   define FFI_64_BIT_MAX 9223372036854775807LL
+#  endif /* _AIX52 or newer */
 # else
 #  ifdef __GNUC__
 #   define FFI_LONG_LONG_MAX __LONG_LONG_MAX__
 #  endif
-#  ifdef _AIX
+#  ifdef _AIX /* AIX 5.1 and earlier have LONGLONG_MAX */
 #   ifndef __PPC64__
 #    if defined (__IBMC__) || defined (__IBMCPP__)
 #     define FFI_LONG_LONG_MAX LONGLONG_MAX
diff --git a/.pc/ppc64-darwin/ChangeLog b/.pc/ppc64-darwin/ChangeLog
index 05d6c42..5cc54a1 100644
--- a/.pc/ppc64-darwin/ChangeLog
+++ b/.pc/ppc64-darwin/ChangeLog
@@ -68,7 +68,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/ppc64-darwin/configure b/.pc/ppc64-darwin/configure
index 92109cf..ca31d4a 100755
--- a/.pc/ppc64-darwin/configure
+++ b/.pc/ppc64-darwin/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1367,7 +1367,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1438,7 +1438,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1547,7 +1547,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2148,7 +2148,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3081,7 +3081,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14129,7 +14129,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14199,7 +14199,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/ppc64-darwin/configure.ac b/.pc/ppc64-darwin/configure.ac
index 4b8c041..4f81f08 100644
--- a/.pc/ppc64-darwin/configure.ac
+++ b/.pc/ppc64-darwin/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/remove-debug-code/ChangeLog b/.pc/remove-debug-code/ChangeLog
index 142950d..3f52f6a 100644
--- a/.pc/remove-debug-code/ChangeLog
+++ b/.pc/remove-debug-code/ChangeLog
@@ -85,7 +85,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/sparc-abi-check/ChangeLog b/.pc/sparc-abi-check/ChangeLog
index 4b5511e..c246bf0 100644
--- a/.pc/sparc-abi-check/ChangeLog
+++ b/.pc/sparc-abi-check/ChangeLog
@@ -80,7 +80,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/sparc-v8-aggregate-returns/ChangeLog b/.pc/sparc-v8-aggregate-returns/ChangeLog
index 36f506c..8ec769a 100644
--- a/.pc/sparc-v8-aggregate-returns/ChangeLog
+++ b/.pc/sparc-v8-aggregate-returns/ChangeLog
@@ -18,7 +18,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/.pc/ungccify/configure.ac b/.pc/ungccify/configure.ac
index 1e77610..2c212cc 100644
--- a/.pc/ungccify/configure.ac
+++ b/.pc/ungccify/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/win64-underscore/configure b/.pc/win64-underscore/configure
index 4b22f16..014742f 100755
--- a/.pc/win64-underscore/configure
+++ b/.pc/win64-underscore/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1366,7 +1366,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1437,7 +1437,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1546,7 +1546,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2147,7 +2147,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3080,7 +3080,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14071,7 +14071,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14141,7 +14141,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/win64-underscore/configure.ac b/.pc/win64-underscore/configure.ac
index a03394b..956f9ba 100644
--- a/.pc/win64-underscore/configure.ac
+++ b/.pc/win64-underscore/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/.pc/x86_pcrel_test/configure b/.pc/x86_pcrel_test/configure
index ca8ca18..b228ac4 100755
--- a/.pc/x86_pcrel_test/configure
+++ b/.pc/x86_pcrel_test/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1367,7 +1367,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1438,7 +1438,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1547,7 +1547,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2148,7 +2148,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3081,7 +3081,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -14127,7 +14127,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -14197,7 +14197,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/.pc/x86_pcrel_test/configure.ac b/.pc/x86_pcrel_test/configure.ac
index 0a575e1..779097c 100644
--- a/.pc/x86_pcrel_test/configure.ac
+++ b/.pc/x86_pcrel_test/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/ChangeLog b/ChangeLog
index 18a9686..a788c18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -121,7 +121,7 @@
 2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
 
 	* configure.ac: Fix x86 test for pc related relocs.
-	* confifure: Rebuilt.
+	* configure: Rebuilt.
 
 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
 
diff --git a/compile b/compile
old mode 100755
new mode 100644
diff --git a/config.guess b/config.guess
old mode 100755
new mode 100644
diff --git a/config.sub b/config.sub
old mode 100755
new mode 100644
diff --git a/configure b/configure
index db1b710..e63f684 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc8.
+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 #
 # Report bugs to <http://sourceware.org/libffi.html>.
 #
@@ -570,8 +570,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='libffi'
 PACKAGE_TARNAME='libffi'
-PACKAGE_VERSION='3.0.10rc8'
-PACKAGE_STRING='libffi 3.0.10rc8'
+PACKAGE_VERSION='3.0.10rc9'
+PACKAGE_STRING='libffi 3.0.10rc9'
 PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
 PACKAGE_URL=''
 
@@ -1375,7 +1375,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libffi 3.0.10rc8 to adapt to many kinds of systems.
+\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1446,7 +1446,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of libffi 3.0.10rc8:";;
+     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
    esac
   cat <<\_ACEOF
 
@@ -1562,7 +1562,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libffi configure 3.0.10rc8
+libffi configure 3.0.10rc9
 generated by GNU Autoconf 2.68
 
 Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2163,7 +2163,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libffi $as_me 3.0.10rc8, which was
+It was created by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   $ $0 $@
@@ -3197,7 +3197,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='libffi'
- VERSION='3.0.10rc8'
+ VERSION='3.0.10rc9'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15151,7 +15151,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by libffi $as_me 3.0.10rc8, which was
+This file was extended by libffi $as_me 3.0.10rc9, which was
 generated by GNU Autoconf 2.68.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -15221,7 +15221,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-libffi config.status 3.0.10rc8
+libffi config.status 3.0.10rc9
 configured by $0, generated by GNU Autoconf 2.68,
   with options \\"\$ac_cs_config\\"
 
diff --git a/configure.ac b/configure.ac
index f14284f..2abe9db 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl Process this with autoconf to create configure
 
 AC_PREREQ(2.63)
 
-AC_INIT([libffi], [3.0.10rc8], [http://sourceware.org/libffi.html])
+AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
 AC_CONFIG_HEADERS([fficonfig.h])
 
 AC_CANONICAL_SYSTEM
diff --git a/depcomp b/depcomp
old mode 100755
new mode 100644
diff --git a/doc/stamp-vti b/doc/stamp-vti
index 32a47b1..200494e 100644
--- a/doc/stamp-vti
+++ b/doc/stamp-vti
@@ -1,4 +1,4 @@
 @set UPDATED 25 February 2011
 @set UPDATED-MONTH February 2011
-@set EDITION 3.0.10rc7
-@set VERSION 3.0.10rc7
+@set EDITION 3.0.10rc8
+@set VERSION 3.0.10rc8
diff --git a/doc/version.texi b/doc/version.texi
index 32a47b1..200494e 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
 @set UPDATED 25 February 2011
 @set UPDATED-MONTH February 2011
-@set EDITION 3.0.10rc7
-@set VERSION 3.0.10rc7
+@set EDITION 3.0.10rc8
+@set VERSION 3.0.10rc8
diff --git a/include/ffi.h.in b/include/ffi.h.in
index 747dd17..f5a29b0 100644
--- a/include/ffi.h.in
+++ b/include/ffi.h.in
@@ -86,11 +86,15 @@ extern "C" {
 #else
 # ifdef LLONG_MAX
 #  define FFI_LONG_LONG_MAX LLONG_MAX
+#  ifdef _AIX52 /* or newer has C99 LLONG_MAX */
+#   undef FFI_64_BIT_MAX
+#   define FFI_64_BIT_MAX 9223372036854775807LL
+#  endif /* _AIX52 or newer */
 # else
 #  ifdef __GNUC__
 #   define FFI_LONG_LONG_MAX __LONG_LONG_MAX__
 #  endif
-#  ifdef _AIX
+#  ifdef _AIX /* AIX 5.1 and earlier have LONGLONG_MAX */
 #   ifndef __PPC64__
 #    if defined (__IBMC__) || defined (__IBMCPP__)
 #     define FFI_LONG_LONG_MAX LONGLONG_MAX
@@ -270,12 +274,7 @@ size_t ffi_java_raw_size (ffi_cif *cif);
 __declspec(align(8))
 #endif
 typedef struct {
-#if @FFI_EXEC_TRAMPOLINE_TABLE@
-  void *trampoline_table;
-  void *trampoline_table_entry;
-#else
   char tramp[FFI_TRAMPOLINE_SIZE];
-#endif
   ffi_cif   *cif;
   void     (*fun)(ffi_cif*,void*,void**,void*);
   void      *user_data;
@@ -308,12 +307,7 @@ ffi_prep_closure_loc (ffi_closure*,
 # pragma pack 8
 #endif
 typedef struct {
-#if @FFI_EXEC_TRAMPOLINE_TABLE@
-  void *trampoline_table;
-  void *trampoline_table_entry;
-#else
   char tramp[FFI_TRAMPOLINE_SIZE];
-#endif
 
   ffi_cif   *cif;
 
@@ -334,12 +328,7 @@ typedef struct {
 } ffi_raw_closure;
 
 typedef struct {
-#if @FFI_EXEC_TRAMPOLINE_TABLE@
-  void *trampoline_table;
-  void *trampoline_table_entry;
-#else
   char tramp[FFI_TRAMPOLINE_SIZE];
-#endif
 
   ffi_cif   *cif;
 
diff --git a/install-sh b/install-sh
old mode 100755
new mode 100644
diff --git a/mdate-sh b/mdate-sh
old mode 100755
new mode 100644
diff --git a/missing b/missing
old mode 100755
new mode 100644
diff --git a/patches/aix-ibm-xlc b/patches/aix-ibm-xlc
index 2e0869d..8f528d6 100644
--- a/patches/aix-ibm-xlc
+++ b/patches/aix-ibm-xlc
@@ -2,7 +2,7 @@ Index: libffi/ChangeLog
 ===================================================================
 --- libffi.orig/ChangeLog
 +++ libffi/ChangeLog
-@@ -1,3 +1,16 @@
+@@ -1,7 +1,20 @@
 +2011-02-11  Anthony Green  <green@moxielogic.com>
 +
 +	From Tom Honermann <tom.honermann@oracle.com>:
@@ -19,6 +19,11 @@ Index: libffi/ChangeLog
  2011-02-08  Rafael Avila de Espindola  <respindola@mozilla.com>
  
  	* configure.ac: Fix x86 test for pc related relocs.
+-	* confifure: Rebuilt.
++	* configure: Rebuilt.
+ 
+ 2011-02-07  Joel Sherrill <joel.sherrill@oarcorp.com>
+ 
 Index: libffi/include/ffi.h.in
 ===================================================================
 --- libffi.orig/include/ffi.h.in
@@ -51,7 +56,7 @@ Index: libffi/include/ffi.h.in
  
     THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-@@ -77,6 +78,9 @@ extern "C" {
+@@ -77,15 +78,31 @@ extern "C" {
  /* LONG_LONG_MAX is not always defined (not if STRICT_ANSI, for example).
     But we can find it either under the correct ANSI name, or under GNU
     C's internal name.  */
@@ -61,11 +66,17 @@ Index: libffi/include/ffi.h.in
  #ifdef LONG_LONG_MAX
  # define FFI_LONG_LONG_MAX LONG_LONG_MAX
  #else
-@@ -86,6 +90,15 @@ extern "C" {
+ # ifdef LLONG_MAX
+ #  define FFI_LONG_LONG_MAX LLONG_MAX
++#  ifdef _AIX52 /* or newer has C99 LLONG_MAX */
++#   undef FFI_64_BIT_MAX
++#   define FFI_64_BIT_MAX 9223372036854775807LL
++#  endif /* _AIX52 or newer */
+ # else
  #  ifdef __GNUC__
  #   define FFI_LONG_LONG_MAX __LONG_LONG_MAX__
  #  endif
-+#  ifdef _AIX
++#  ifdef _AIX /* AIX 5.1 and earlier have LONGLONG_MAX */
 +#   ifndef __PPC64__
 +#    if defined (__IBMC__) || defined (__IBMCPP__)
 +#     define FFI_LONG_LONG_MAX LONGLONG_MAX
@@ -77,7 +88,7 @@ Index: libffi/include/ffi.h.in
  # endif
  #endif
  
-@@ -132,17 +145,17 @@ typedef struct _ffi_type
+@@ -132,17 +149,17 @@ typedef struct _ffi_type
  #endif
  
  #if LONG_MAX == 2147483647
@@ -98,7 +109,7 @@ Index: libffi/include/ffi.h.in
  # define ffi_type_ulong        ffi_type_uint64
  # define ffi_type_slong        ffi_type_sint64
  #else
-@@ -195,7 +208,7 @@ typedef struct {
+@@ -195,7 +212,7 @@ typedef struct {
  #ifndef FFI_SIZEOF_ARG
  # if LONG_MAX == 2147483647
  #  define FFI_SIZEOF_ARG        4
diff --git a/patches/irix b/patches/irix
index da3c3e9..a4068d6 100644
--- a/patches/irix
+++ b/patches/irix
@@ -18,7 +18,7 @@ Index: libffi/include/ffi.h.in
 ===================================================================
 --- libffi.orig/include/ffi.h.in
 +++ libffi/include/ffi.h.in
-@@ -278,6 +278,9 @@ typedef struct {
+@@ -282,6 +282,9 @@ typedef struct {
  } ffi_closure __attribute__((aligned (8)));
  #else
  } ffi_closure;
@@ -28,7 +28,7 @@ Index: libffi/include/ffi.h.in
  #endif
  
  void *ffi_closure_alloc (size_t size, void **code);
-@@ -296,6 +299,9 @@ ffi_prep_closure_loc (ffi_closure*,
+@@ -300,6 +303,9 @@ ffi_prep_closure_loc (ffi_closure*,
  		      void *user_data,
  		      void*codeloc);
  
diff --git a/patches/stand-alone b/patches/stand-alone
index 4970b7b..2a17231 100644
--- a/patches/stand-alone
+++ b/patches/stand-alone
@@ -4059,7 +4059,7 @@ Index: libffi/configure
  #! /bin/sh
  # Guess values for system-dependent variables and create Makefiles.
 -# Generated by GNU Autoconf 2.64 for libffi 3.0.9.
-+# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc6.
++# Generated by GNU Autoconf 2.68 for libffi 3.0.10rc9.
 +#
 +# Report bugs to <http://sourceware.org/libffi.html>.
  #
@@ -4169,8 +4169,8 @@ Index: libffi/configure
 -PACKAGE_VERSION='3.0.9'
 -PACKAGE_STRING='libffi 3.0.9'
 -PACKAGE_BUGREPORT='http://gcc.gnu.org/bugs.html'
-+PACKAGE_VERSION='3.0.10rc6'
-+PACKAGE_STRING='libffi 3.0.10rc6'
++PACKAGE_VERSION='3.0.10rc9'
++PACKAGE_STRING='libffi 3.0.10rc9'
 +PACKAGE_BUGREPORT='http://sourceware.org/libffi.html'
  PACKAGE_URL=''
  
@@ -4363,7 +4363,7 @@ Index: libffi/configure
    # This message is too long to be a string in the A/UX 3.1 sh.
    cat <<_ACEOF
 -\`configure' configures libffi 3.0.9 to adapt to many kinds of systems.
-+\`configure' configures libffi 3.0.10rc6 to adapt to many kinds of systems.
++\`configure' configures libffi 3.0.10rc9 to adapt to many kinds of systems.
  
  Usage: $0 [OPTION]... [VAR=VALUE]...
  
@@ -4381,7 +4381,7 @@ Index: libffi/configure
  if test -n "$ac_init_help"; then
    case $ac_init_help in
 -     short | recursive ) echo "Configuration of libffi 3.0.9:";;
-+     short | recursive ) echo "Configuration of libffi 3.0.10rc6:";;
++     short | recursive ) echo "Configuration of libffi 3.0.10rc9:";;
     esac
    cat <<\_ACEOF
  
@@ -4426,7 +4426,7 @@ Index: libffi/configure
    cat <<\_ACEOF
 -libffi configure 3.0.9
 -generated by GNU Autoconf 2.64
-+libffi configure 3.0.10rc6
++libffi configure 3.0.10rc9
 +generated by GNU Autoconf 2.68
  
 -Copyright (C) 2009 Free Software Foundation, Inc.
@@ -4649,7 +4649,7 @@ Index: libffi/configure
  
 -It was created by libffi $as_me 3.0.9, which was
 -generated by GNU Autoconf 2.64.  Invocation command line was
-+It was created by libffi $as_me 3.0.10rc6, which was
++It was created by libffi $as_me 3.0.10rc9, which was
 +generated by GNU Autoconf 2.68.  Invocation command line was
  
    $ $0 $@
@@ -5048,7 +5048,7 @@ Index: libffi/configure
  # Define the identity of the package.
   PACKAGE='libffi'
 - VERSION='3.0.9'
-+ VERSION='3.0.10rc6'
++ VERSION='3.0.10rc9'
  
  
  cat >>confdefs.h <<_ACEOF
@@ -7959,7 +7959,7 @@ Index: libffi/configure
  ac_log="
 -This file was extended by libffi $as_me 3.0.9, which was
 -generated by GNU Autoconf 2.64.  Invocation command line was
-+This file was extended by libffi $as_me 3.0.10rc6, which was
++This file was extended by libffi $as_me 3.0.10rc9, which was
 +generated by GNU Autoconf 2.68.  Invocation command line was
  
    CONFIG_FILES    = $CONFIG_FILES
@@ -7986,7 +7986,7 @@ Index: libffi/configure
 -libffi config.status 3.0.9
 -configured by $0, generated by GNU Autoconf 2.64,
 -  with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
-+libffi config.status 3.0.10rc6
++libffi config.status 3.0.10rc9
 +configured by $0, generated by GNU Autoconf 2.68,
 +  with options \\"\$ac_cs_config\\"
  
@@ -9016,7 +9016,7 @@ Index: libffi/configure.ac
 +AC_PREREQ(2.63)
  
 -AC_INIT([libffi], [3.0.9], [http://gcc.gnu.org/bugs.html])
-+AC_INIT([libffi], [3.0.10rc6], [http://sourceware.org/libffi.html])
++AC_INIT([libffi], [3.0.10rc9], [http://sourceware.org/libffi.html])
  AC_CONFIG_HEADERS([fficonfig.h])
  
 -AM_ENABLE_MULTILIB(, ..)
diff --git a/src/arm/sysv.S b/src/arm/sysv.S
index 2b7ea60..14a7f03 100644
--- a/src/arm/sysv.S
+++ b/src/arm/sysv.S
@@ -147,6 +147,23 @@ _L__\name:
 .endm
 #endif
 
+.macro	RETLDM	regs=, cond=, dirn=ia
+#if defined (__INTERWORKING__)
+	.ifc "\regs",""
+	ldr\cond	lr, [sp], #4
+	.else
+	ldm\cond\dirn	sp!, {\regs, lr}
+	.endif
+	bx\cond	lr
+#else
+	.ifc "\regs",""
+	ldr\cond	pc, [sp], #4
+	.else
+	ldm\cond\dirn	sp!, {\regs, pc}
+	.endif
+#endif
+.endm
+
 	@ r0:   ffi_prep_args
 	@ r1:   &ecif
 	@ r2:   cif->bytes
@@ -170,7 +187,7 @@ ARM_FUNC_START ffi_call_SYSV
 	@     r1 already set
 
 	@ Call ffi_prep_args(stack, &ecif)
-	bl	CNAME(ffi_prep_args)
+	bl	ffi_prep_args
 
 	@ move first 4 parameters in registers
 	ldmia	sp, {r0-r3}
@@ -318,12 +335,7 @@ ARM_FUNC_START ffi_closure_SYSV
 
 /* Below are VFP hard-float ABI call and closure implementations.
    Add VFP FPU directive here. */
-#ifndef __APPLE__
-    /* XXX - .fpu pseudo-directive is not supported by Apple's assembler,
-       and VFP hard-float calling conventions are not supported by the
-       compiler. */
 	.fpu	vfp
-#endif
 
 	@ r0:   fn
 	@ r1:   &ecif
@@ -350,7 +362,7 @@ ARM_FUNC_START ffi_call_VFP
 	sub	r2, fp, #64   @ VFP scratch space
 
 	@ Call ffi_prep_args(stack, &ecif, vfp_space)
-	bl	CNAME(ffi_prep_args)
+	bl	ffi_prep_args
 
 	@ Load VFP register args if needed
 	cmp	r0, #0
@@ -412,18 +424,11 @@ LSYM(Lbase_args):
 	fstmiadeq	r2, {d0-d3}
 
 LSYM(Lepilogue_vfp):
-#if defined (__INTERWORKING__)
-  ldmia   sp!, {r0-r3,fp, lr}
-  bx  lr
-#else
-  ldmia   sp!, {r0-r3,fp, pc}
-#endif
+	RETLDM	"r0-r3,fp"
 
 .ffi_call_VFP_end:
 	UNWIND .fnend
-#ifdef __ELF__
         .size    CNAME(ffi_call_VFP),.ffi_call_VFP_end-CNAME(ffi_call_VFP)
-#endif
 
 
 ARM_FUNC_START ffi_closure_VFP
@@ -439,7 +444,7 @@ ARM_FUNC_START ffi_closure_VFP
 	sub	sp, sp, #72
 	str	sp, [sp, #64]
 	add	r1, sp, #64
-	bl	CNAME(ffi_closure_SYSV_inner)
+	bl	ffi_closure_SYSV_inner
 
 	cmp	r0, #FFI_TYPE_INT
 	beq	.Lretint_vfp
@@ -485,9 +490,7 @@ ARM_FUNC_START ffi_closure_VFP
 
 .ffi_closure_VFP_end:
 	UNWIND .fnend
-#ifdef __ELF__
         .size    CNAME(ffi_closure_VFP),.ffi_closure_VFP_end-CNAME(ffi_closure_VFP)
-#endif
 
 #if defined __ELF__ && defined __linux__
 	.section	.note.GNU-stack,"",%progbits