summaryrefslogtreecommitdiff
path: root/gas/testsuite/ChangeLog
blob: 4337a61ce479159d600e85749fb713740a839e91 (plain)
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
2009-07-16  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/i386/i386.exp: Run ifunc and x86-64-ifunc.

	* gas/i386/ifunc.d: New,
	* gas/i386/ifunc.s: Likewise.
	* gas/i386/x86-64-ifunc.d: Likewise.

2009-07-16  Nathan Sidwell  <nathan@codesourcery.com>

	* gas/arm/target-reloc-1.s: New.
	* gas/arm/target-reloc-1.d: New.

2009-07-14  Daniel Gutson  <dgutson@codesourcery.com>

	* gas/arm/align64.s: New test case.
	* gas/arm/align64.d: Expected disassembly.

2009-07-14  Daniel Gutson  <dgutson@codesourcery.com>

	* gas/arm/thumb-w-bad.d: New test case.
	* gas/arm/thumb-w-bad.l: New file.
	* gas/arm/thumb-w-bad.s: New file.
	* gas/arm/thumb-w-good.d: New test case.
	* gas/arm/thumb-w-good.s: New file.

2009-07-09  Daniel Gutson  <dgutson@codesourcery.com>

	* gas/arm/inst-po.d: New testcase.
	* gas/arm/inst-po.s: New file.
	* gas/arm/inst-po-2.d: New testcase.
	* gas/arm/inst-po-2.s: New file.
	* gas/arm/inst-po-2.l: New file.
	* gas/arm/inst-po-3.d: New testcase.
	* gas/arm/inst-po-3.s: New file.
	* gas/arm/inst-po-be.d: New testcase.

2009-07-07  2009-07-04  Chung-Lin Tang  <cltang@pllab.cs.nthu.edu.tw>

	* gas/arm/iwmmxt2.d: Fix insn pattern for torvsc,
	add patterns for waddsubhx.
	* gas/arm/iwmmxt2.s: Add tests for waddsubhx.

2009-07-07  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/i386/fma4.d: Append "#pass".
	* gas/i386/x86-64-fma4.d: Likewise.

2009-07-07  Tristan Gingold  <gingold@adacore.com>

	* gas/i386/jump.d: Adjust to be relocated offset for jump to
	external symbol.

2009-07-06  Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>

	* gas/i386/i386.exp: Add FMA4 tests.
	* gas/i386/x86-64-fma4.d: Ditto.
	* gas/i386/fma4.d: Ditto.
	* gas/i386/x86-64-fma4.s: Ditto.
	* gas/i386/fma4.s: Ditto.	
	
2009-07-01  Nick Clifton  <nickc@redhat.com>

	PR 10168
	* gas/arm/thumb32.d: Fix expected disassembly of PKHTB insn.

2009-07-01  Paul Brook <paul@codesourcery.com>

	* gas/arm/fp-save.s: Add .fnstart and .fnend directives.

2009-06-30  Nick Clifton  <nickc@redhat.com>

	PR 10288
	* gas/arm/adrl.d: Update expected disassembly.
	* gas/arm/arch4t-eabi.d: Likewise.
	* gas/arm/arch4t.d: Likewise.
	* gas/arm/arch6zk.d: Likewise.
	* gas/arm/archv6t2.d: Likewise.
	* gas/arm/arm-it.d: Likewise.
	* gas/arm/arm3.d: Likewise.
	* gas/arm/arm7dm.d: Likewise.
	* gas/arm/arm7t.d: Likewise.
	* gas/arm/backslash-at.d: Likewise.
	* gas/arm/bl-local-v4t.d: Likewise.
	* gas/arm/blx-local.d: Likewise.
	* gas/arm/copro.d: Likewise.
	* gas/arm/el_segundo.d: Likewise.
	* gas/arm/float.d: Likewise.
	* gas/arm/fp-save.d: Likewise.
	* gas/arm/fpa-mem.d: Likewise.
	* gas/arm/group-reloc-alu.d: Likewise.
	* gas/arm/group-reloc-ldr.d: Likewise.
	* gas/arm/group-reloc-ldrs.d: Likewise.
	* gas/arm/immed.d: Likewise.
	* gas/arm/inst.d: Likewise.
	* gas/arm/iwmmxt.d: Likewise.
	* gas/arm/ldconst.d: Likewise.
	* gas/arm/macro1.d: Likewise.
	* gas/arm/mapmisc.d: Likewise.
	* gas/arm/mapsecs.d: Likewise.
	* gas/arm/mapshort-eabi.d: Likewise.
	* gas/arm/mapshort-elf.d: Likewise.
	* gas/arm/movw-local.d: Likewise.
	* gas/arm/neon-ldst-rm.d: Likewise.
	* gas/arm/offset.d: Likewise.
	* gas/arm/reg-alias.d: Likewise.
	* gas/arm/relax_load_align.d: Likewise.
	* gas/arm/tcompat.d: Likewise.
	* gas/arm/tcompat2.d: Likewise.
	* gas/arm/thumb-eabi.d: Likewise.
	* gas/arm/thumb.d: Likewise.
	* gas/arm/thumb1_unified.d: Likewise.
	* gas/arm/thumb2_add.d: Likewise.
	* gas/arm/thumb2_it.d: Likewise.
	* gas/arm/thumb2_it_auto.d: Likewise.
	* gas/arm/thumb2_pool.d: Likewise.
	* gas/arm/thumb2_relax.d: Likewise.
	* gas/arm/thumb32.d: Likewise.
	* gas/arm/thumbv6.d: Likewise.
	* gas/arm/thumbv6k.d: Likewise.
	* gas/arm/tls.d: Likewise.
	* gas/arm/vfp1.d: Likewise.
	* gas/arm/vfp1_t2.d: Likewise.
	* gas/arm/vfp1xD.d: Likewise.
	* gas/arm/wince.d: Likewise.
	* gas/arm/wince_inst.d: Likewise.
	* gas/arm/xscale.d: Likewise.

2009-06-29  Nick Clifton  <nickc@redhat.com>

	PR 10288
	* gas/arm/arch6zk.d: Update expected disassembly.
	* gas/arm/arch7.d: Likewise.
	* gas/arm/arm-it-auto-2.d: Likewise.
	* gas/arm/arm-it-auto.d: Likewise.
	* gas/arm/copro.d: Likewise.
	* gas/arm/float.d: Likewise.
	* gas/arm/fpa-mem.d: Likewise.
	* gas/arm/group-reloc-ldc.d: Likewise.
	* gas/arm/group-reloc-ldr.d: Likewise.
	* gas/arm/iwmmxt.d: Likewise.
	* gas/arm/maverick.d: Likewise.
	* gas/arm/neon-omit.d: Likewise.
	* gas/arm/svc.d: Likewise.
	* gas/arm/thumb-eabi.d: Likewise.
	* gas/arm/thumb.d: Likewise.
	* gas/arm/thumb1_unified.d: Likewise.
	* gas/arm/thumb2_add.d: Likewise.
	* gas/arm/thumb2_relax.d: Likewise.
	* gas/arm/thumb32.d: Likewise.
	* gas/arm/vfp-neon-syntax.d: Likewise.
	* gas/arm/vfp-neon-syntax_t2.d: Likewise.
	* gas/arm/vfp1xD.d: Likewise.
	* gas/arm/vfp1xD_t2.d: Likewise.
	* gas/arm/vfpv3-const-conv.d: Likewise.
	* gas/arm/xscale.d: Likewise.

2009-06-22  Daniel Gutson <dgutson@codesourcery.com>

	* gas/arm/arm-it-auto.d: New test.
	* gas/arm/arm-it-auto.s: New file.
	* gas/arm/arm-it-auto-2.d: New test case.
	* gas/arm/arm-it-auto-2.s: New file.
	* gas/arm/arm-it-auto-3.d: New test case.
	* gas/arm/arm-it-auto-3.s: New file.
	* gas/arm/arm-it-bad.d: New test case.
	* gas/arm/arm-it-bad.l: New file.
	* gas/arm/arm-it-bad.s: New file.
	* gas/arm/arm-it-bad-2.d: New test case.
	* gas/arm/arm-it-bad-2.l: New file.
	* gas/arm/arm-it-bad-2.s: New file.
	* gas/arm/arm-it-bad-3.d: New test case.
	* gas/arm/arm-it-bad-3.l: New file.
	* gas/arm/arm-it-bad-3.s: New file.
	* gas/arm/thumb2_it_auto.d: New test.
	* gas/arm/thumb2_it_bad.l: Error message updated.
	* gas/arm/thumb2_it_bad_auto.d: New test.
	* gas/arm/thumb2_it.d: Comment added.
	* gas/arm/thumb2_it_bad.d: Comment added.

2009-06-19  Alan Modra  <amodra@bigpond.net.au>

	* gas/cfi/cfi-common-7.s: Skip a multiple of four.
	* gas/cfi/cfi-common-7.d: Adjust.

2009-06-18  Nick Clifton  <nickc@redhat.com>

	PR 10169
	* gas/arm/thumb2_bad_reg.s: Add tests for SSAT and USAT with an
	out of range shift.
	* gas/arm/thumb2_bad_reg.l: Update expected error messages.

	PR 10288
	* gas/arm/align.s: Add labels so that COFF based targets can
	correctly locate THUMB code.
	* gas/arm/copro.d: Do not pass --architecture switch to objdump.

2009-06-15  Nick Clifton  <nickc@redhat.com>

	PR gas/10186
	* gas/arm/thumb32.d: Fix expected binary value of SEV.W instruction.

2009-06-09  Jakub Jelinek  <jakub@redhat.com>

	PR gas/10255
	* gas/cfi/cfi-common-7.d: New test.
	* gas/cfi/cfi-common-7.s: New.
	* gas/cfi/cfi.exp: Add cfi-common-7 test.

2009-06-08  Dave Korn  <dave.korn.cygwin@gmail.com>

	* gas/i386/jump.d:  Tweak patterns to also match PE platform output.

2009-06-01  H.J. Lu  <hongjiu.lu@intel.com>

	PR gas/10198
	* gas/i386/jump.s: Add test for "jmp $+2".
	* gas/i386/jump16.s: Likewise.

	* gas/i386/jump.d: Updated.
	* gas/i386/jump16.d: Likewise.

2009-05-26  Catherine Moore  <clm@codesourcery.com>

	* gas/mips/eret.s: Remove.
	* gas/mips/eret.d: Remove.
	* gas/mips/eret.l: Remove.
	* gas/mips/eret-1.s: New.
	* gas/mips/eret-1.d: New.
	* gas/mips/eret-2.s: New.
	* gas/mips/eret-2.d: New.
	* gas/mips/eret-3.s: New.
	* gas/mips/eret-3.d: New.
	* gas/mips/mips.exp: Run new tests.  Remove old tests.

2009-05-23  Richard Sandiford  <rdsandiford@googlemail.com>

	* gas/mips/vr4130.s, gas/mips/vr4130.d: Expect part A to have nops.

2009-05-23  Richard Sandiford  <rdsandiford@googlemail.com>

	* gas/mips/align.d: Use an nm test rather than an objdump one.

2009-05-22  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/elf/ifunc-1.d: New.
	* gas/elf/ifunc-1.s: Likewise.

	* gas/elf/elf.exp: Run ifunc-1.

2009-05-22  Dwarakanath Rajagopal  <dwarak.rajagopal@amd.com>

	* gas/i386/i386.exp: Remove SSE5 tests.
	* gas/i386/x86-64-sse5.s: Delete. Remove SSE5 tests.
	* gas/i386/x86-64-sse5.d: Ditto.
	* gas/i386/arch-10-1.l: Remove SSE5 tests.
	* gas/i386/arch-10-2.l: Ditto.
	* gas/i386/arch-10-3.l: Ditto.
	* gas/i386/arch-10-4.l: Ditto.
	* gas/i386/arch-10.d: Ditto.
	* gas/i386/arch-10.s: Ditto.
	* gas/i386/arch-4.s: Delete. Remove SSE5 tests.
	* gas/i386/arch-4.d: Ditto.
	* gas/i386/arch-8.s: Ditto.
	* gas/i386/arch-8.d: Ditto.
	* gas/i386/arch-2.s: Remove SSE5 tests.
	* gas/i386/arch-2.d: Remove SSE5 tests.
	* gas/i386/x86-64-arch-2.s: Ditto.
	
2009-05-19  Dave Korn  <dave.korn.cygwin@gmail.com>

	* gas/pe/:  New directory for PE format-specific tests.
	* gas/pe/aligncomm-a.d:  New test pattern file.
	* gas/pe/aligncomm-a.s:  New test source file.
	* gas/pe/aligncomm-b.d:  New test pattern file.
	* gas/pe/aligncomm-b.s:  New test source file.
	* gas/pe/aligncomm-c.d:  New test pattern file.
	* gas/pe/aligncomm-c.s:  New test source file.
	* gas/pe/aligncomm-d.d:  New test pattern file.
	* gas/pe/aligncomm-d.s:  New test source file.
	* gas/pe/pe.exp:  New test control script.
	* lib/gas-defs.exp (is_pecoff_format):  New function.

2009-05-05  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/lns/lns-common-1-ia64.s: Add test for discriminator.

2009-05-05  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

	* gas/arm/bl-local-v4t.d: New file.
	* gas/arm/bl-local-v4t.s: New file.
	* gas/arm/blx-local.s: Update for branches and calls to local
	  functions.
	* gas/arm/blx-local.d: Likewise.
	* gas/arm/blx-local.l: New file.
	* gas/arm/blx-local-thumb.l: New file.
	* gas/arm/blx-local-thumb.s: New file.
	* gas/arm/blx-local-thumb.d: New file.

2009-05-01  Nathan Sidwell  <nathan@codesourcery.com>
	    Daniel Jacobowitz  <dan@codesourcery.com>

	* gas/arm/attr-mcpu.d: Add -mfpu=neon.
	* gas/arm/mapmisc.d: Correct expected output for .double and
	.dcb.d.

2009-04-30  Nick Clifton  <nickc@redhat.com>

	* gas/elf/elf.exp: Extend type test to include an ifunc symbol.
	Provide an alternative test for targets which do not support ifunc
	symbols.
	gas/elf/type.s: Add entry for an ifunc symbol.
	gas/elf/type.e: Add ifunc entry to expected symbol dump.
	gas/elf/section2.e-armelf: Add  entry for ifunc symbol.
	gas/elf/type-noifunc.s: New file.
	gas/elf/type-noifunc.e: Likewise.

2009-04-24  Cary Coutant  <ccoutant@google.com>

	* gas/lns/lns-common-1.d: Add test for discriminator.
	* gas/lns/lns-common-1.s: Likewise.

2009-04-20  Jan Beulich  <jbeulich@novell.com>

	* gas/i386/equ.s: Adjust.
	* gas/i386/equ.d: Remove reference to equ.e.
	* gas/i386/equ.e: Delete.
	* gas/i386/intel-expr.s: New.
	* gas/i386/intel-expr.d: New.
	* gas/i386/i386.exp: Run new test.
	* gas/i386/intel.s: Adjust.
	* gas/i386/intel.e: Remove no longer valid warning messages.
	* gas/i386/intel16.s: Adjust.
	* gas/i386/intel16.d: Remove reference to intel16.e.
	* gas/i386/intel16.e: Delete.
	* gas/i386/intelbad.s: Add more tests.
	* gas/i386/intelbad.l: Adjust.
	* gas/i386/intelok.s: Remove now unneeded equates. Add more
	tests.
	* gas/i386/intelok.d: Remove reference to intelok.e. Adjust.
	* gas/i386/intelok.e: Delete.
	* gas/i386/x86_64.s: Adjust.
	* gas/i386/x86_64.d: Remove reference to x86_64.e.
	* gas/i386/x86_64.e: Delete.

2009-04-16  Alan Modra  <amodra@bigpond.net.au>

	* gas/all/gas.exp: Disable assign and assign-ok tests on blackfin.
	* gas/all/p2425.s: Use "==" instead of "=".
	* gas/all/weakref1.s: Likewise.
	* gas/macros/and.s: Likewise.
	* gas/macros/test1.s: Likewise.
	* gas/hppa/parse/parse.exp: Remove xfail on block1.

2009-04-15  Jan Beulich  <jbeulich@novell.com>

	* gas/i386/intel.e: Adjust expectations.

2009-04-15  Jan Beulich  <jbeulich@novell.com>

	* gas/i386/x86-64-sse5.s: Add test of protd.
	* gas/i386/x86-64-sse5.d: Adjust expectations to match input.

2009-04-09  Catherine Moore  <clm@codesourcery.com>

	* gas/mips/mips.exp: Run new tests.
	* gas/mips/eret.s: New test.
	* gas/mips/eret.d: New test output.
	* gas/mips/eret.l: New test output.

2009-04-07  Peter Bergner  <bergner@vnet.ibm.com>

	* gas/ppc/e500mc.d: Update to match extended mnemonics.

2009-04-01  Nathan Sidwell  <nathan@codesourcery.com>

	* gas/arm/align.s, gas/arm/align.d: New.
	* gas/arm/thumb32.d, gas/arm/arch6zk.d, gas/arm/arch6zk.s,
	arm/thumb2_relax.d: Adjust for align changes.

2009-03-31  Peter Bergner  <bergner@vnet.ibm.com>

	* gas/ppc/power7.d ("ori", ".p2align"): Add tests for group ending nop.
	* gas/ppc/power7.s: Likewise.
	* gas/ppc/power6.d: Likewise.
	* gas/ppc/power6.s: Likewise.

2009-03-30  Joseph Myers  <joseph@codesourcery.com>

	* gas/arm/mapsecs.d, gas/arm/mapsecs.s: New.

2009-03-26  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

	* gas/arm/wince_inst.d: Convert to unified syntax.

2009-03-18  Andrew Stubbs  <ams@codesourcery.com>

	* gas/arm/adr-invalid.d: New file.
	* gas/arm/adr-invalid.l: New file.
	* gas/arm/adr-invalid.s: New file.

2009-03-14  Richard Sandiford  <r.sandiford@uk.ibm.com>

	* gas/ppc/textalign-xcoff-001.d: Expect the section VMAs to be
	properly aligned.
	* gas/ppc/textalign-xcoff-002.d: Likewise.

2009-03-14  Richard Sandiford  <r.sandiford@uk.ibm.com>

	* gas/ppc/xcoff-branch-1.s, gas/ppc/xcoff-branch-1-32.d,
	gas/ppc/xcoff-branch-1-64.d: New tests.
	* gas/ppc/aix.exp: Run them.

2009-03-11  Hans-Peter Nilsson  <hp@axis.com>

	* gas/cris/rd-bkw5.d, gas/cris/rd-bkw5.s, gas/cris/rd-bkw5b.d,
	gas/cris/rd-bkw5bpic.d, gas/cris/rd-bkw5bv32.d,
	gas/cris/rd-bkw5bv32pic.d, gas/cris/rd-bkw5pic.d,
	gas/cris/rd-bkw5v32.d, gas/cris/rd-bkw5v32pic.d: New tests.

2009-03-10  Hans-Peter Nilsson  <hp@axis.com>

	* gas/cris/rd-bkw4.d, gas/cris/rd-bkw4v32.d, gas/cris/rd-bkw4.s:
	New test.

2009-03-10  Alan Modra  <amodra@bigpond.net.au>

	* gas/ppc/altivec_and_spe.d (objdump): Add -Maltivec.
	* gas/ppc/common.d: Adjust for -Mcom not including -Mppc.

2009-03-05  Joseph Myers  <joseph@codesourcery.com>

	* gas/arm/mapmisc.d, gas/arm/mapmisc.dat, gas/arm/mapmisc.s: New.

2009-03-02  Qinwei  <qinwei@sunnorth.com.cn>

	* gas/score/arith_32-lt.d: New file.
	* gas/score/arith_32.d: New file.
	* gas/score/arith_32.s: New file.
	* gas/score/bit_32-lt.d: New file.
	* gas/score/bit_32.d: New file.
	* gas/score/bit_32.s: New file.
	* gas/score/branch_32-lt.d: New file.
	* gas/score/branch_32.d: New file.
	* gas/score/branch_32.s: New file.
	* gas/score/cmp_32-lt.d: New file.
	* gas/score/cmp_32.d: New file.
	* gas/score/cmp_32.s: New file.
	* gas/score/load_store_32-lt.d: New file.
	* gas/score/load_store_32.d: New file.
	* gas/score/load_store_32.s: New file.
	* gas/score/logical_32-lt.d: New file.
	* gas/score/logical_32.d: New file.
	* gas/score/logical_32.s: New file.
	* gas/score/mv_32-lt.d: New file.
	* gas/score/mv_32.d: New file.
	* gas/score/mv_32.s: New file.
	* gas/score/relax_32.exp: New file.
	* gas/score/relaxation_macro.h: New file.
	* gas/score/shift_32-lt.d: New file.
	* gas/score/shift_32.d: New file.
	* gas/score/shift_32.s: New file.
	* gas/score/syscontrol_32-lt.d: New file.
	* gas/score/syscontrol_32.d: New file.
	* gas/score/syscontrol_32.s: New file.

2009-03-01  Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/archv6m.s: Add dmb, dsb, and isb.
	* gas/arm/archv6m.d: Likewise.

2009-02-26  Peter Bergner  <bergner@vnet.ibm.com>

	* gas/ppc/e500mc.d ("wait", "waitsrv", "waitimpl"): Add tests.
	* gas/ppc/e500mc.s: Likewise.
	* gas/ppc/power6.d ("cdtbcd", "cbcdtd", "addg6s"): Add tests.
	* gas/ppc/power6.s: Likewise.
	* gas/ppc/power7.d ("lfdpx", "mffgpr", "mftgpr"): Remove invalid tests.
	("wait", "waitsrv", "waitimpl", "divwe", "divwe.", "divweo", "divweo.",
	"divweu", "divweu.", "divweuo", "divweuo.", "bpermd", "popcntw",
	"popcntd", "ldbrx", "stdbrx", "lfiwzx", "lfiwzx", "fcfids", "fcfids.",
	"fcfidus", "fcfidus.", "fctiwu", "fctiwu.", "fctiwuz", "fctiwuz.",
	"fctidu", "fctidu.", "fctiduz", "fctiduz.", "fcfidu", "fcfidu.",
	"ftdiv", "ftdiv", "ftsqrt", "ftsqrt", "dcbtt", "dcbtstt", "dcffix",
	"dcffix.", "lbarx", "lbarx", "lbarx", "lharx", "lharx", "lharx",
	"stbcx.", "sthcx.", "fre", "fre.", "fres", "fres.", "frsqrte",
	"frsqrte.", "frsqrtes", "frsqrtes.", "isel"): Add tests.
	* gas/ppc/power7.s: Likewise.
	* gas/ppc/vsx.d: New test.
	* gas/ppc/vsx.s: Likewise.
	* gas/ppc/ppc.exp: Run it.

2009-02-23  Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/thumb2_bad_reg.s: Update to allow R13 as second argument
	for CMP.
	* gas/arm/thumb2_bad_reg.l: Adjust accordingly.

2009-02-19  Peter Bergner  <bergner@vnet.ibm.com>

	* gas/ppc/e500mc.d ("lfdepx", "stfdepx"): Fix tests to expect a
	floating point register.

2009-02-18  Adam Nemet  <anemet@caviumnetworks.com>

	* gas/mips/octeon.s: Add more tests for dmfc2 and dmtc2.
	* gas/mips/octeon.d: Update.
	* gas/mips/octeon-ill.l: Update error message.

2009-02-16  Nick Clifton  <nickc@redhat.com>

	* gas/mips/e32-rel2.d: Adjust expected output to remove the 0x4000
	offset.
	* gas/mips/e32el-rel2.d: Likewise.
	* gas/mips/elf-rel2.d: Likewise.
	* gas/mips/elf-rel9-mips16.d: Likewise.
	* gas/mips/elf-rel9.d: Likewise.
	* gas/mips/elfel-rel2.d: Likewise.
	* gas/mips/lb.d: Likewise.
	* gas/mips/mips-abi32.d: Likewise.
	* gas/mips/mips-gp32-fp32.d: Likewise.
	* gas/mips/mips-gp32-fp64.d: Likewise.
	* gas/mips/mips-gp64-fp32.d: Likewise.
	* gas/mips/mips-gp64-fp64.d: Likewise.
	* gas/mips/mips32-sf32.d: Likewise.

2009-02-12  Nathan Sidwell  <nathan@codesourcery.com>

	* m68k/br-isac.d, m68k/br-isac.s: Add stldsr test.

2009-02-06  Nick Clifton  <nickc@redhat.com>

	* gas/mips/beq.d: Make no assumptions about the symbols used as
	branch targets in the disassembly, or the names of the relocs
	produced.
	* gas/mips/bge.d: Likewise.
	* gas/mips/bgeu.d: Likewise.
	* gas/mips/blt.d: Likewise.
	* gas/mips/bltu.d: Likewise.
	* gas/mips/mips32-sf32.d: Likewise.
	* gas/mips/mips1-fp.d: Likewise.
	* gas/mips/branch-misc-1.d: Skip for the mips-ecoff target.
	* gas/mips/branch-misc-2-64.d: Likewise.
	* gas/mips/branch-misc-2.d: Likewise.
	* gas/mips/branch-misc-2pic-64.d: Likewise.
	* gas/mips/branch-misc-2pic.d: Likewise.
	* gas/mips/branch-swap.d: Likewise.

2009-02-06  Nick Clifton  <nickc@redhat.com>

	* gas/elf/symtab.d: But do not run the test for the Alpha or HPPA
	ports.
	
2009-02-05  Peter Bergner  <bergner@vnet.ibm.com>

	* gas/ppc/booke.s ("dcbt", "dcbtst"): New tests.
	* gas/ppc/booke.d: Likewise.
	* gas/ppc/power4_32.s: Likewise.
	* gas/ppc/power4_32.d: Likewise.

2009-02-05  Catherine Moore  <clm@codesourcery.com>

	* gas/elf/elf.exp: Really run the symtab test.

2009-02-04  H.J. Lu  <hongjiu.lu@intel.com>

	AVX Programming Reference (January, 2009)
	* gas/i386/arch-avx-1-3.l: New.
	* gas/i386/arch-avx-1-3.s: Likewise.
	* gas/i386/arch-avx-1-4.l: Likewise.
	* gas/i386/arch-avx-1-4.s: Likewise.
	* gas/i386/arch-avx-1-5.l: Likewise.
	* gas/i386/arch-avx-1-5.s: Likewise.
	* gas/i386/arch-avx-1-6.l: Likewise.
	* gas/i386/arch-avx-1-6.s: Likewise.

	* gas/i386/arch-10.s: Add vpclmul instructions.
	* gas/i386/arch-avx-1.s: Likewise.
	* gas/i386/avx.s: Likewise.
	* gas/i386/x86-64-arch-2.s: Likewise.
	* gas/i386/x86-64-avx.s: Likewise.

	* gas/i386/sse2avx.s: Add pclmul instructions.
	* gas/i386/x86-64-sse2avx.s: Likewise.

	* gas/i386/arch-10.d: Updated.
	* gas/i386/arch-10-1.l: Likewise.
	* gas/i386/arch-10-2.l: Likewise.
	* gas/i386/arch-10-3.l: Likewise.
	* gas/i386/arch-10-4.l: Likewise.
	* gas/i386/arch-avx-1.d: Likewise.
	* gas/i386/arch-avx-1-1.l: Likewise.
	* gas/i386/arch-avx-1-2.l: Likewise.
	* gas/i386/avx.d: Likewise.
	* gas/i386/avx-intel.d: Likewise.
	* gas/i386/sse2avx.d: Likewise.
	* gas/i386/x86-64-arch-2.d: Likewise.
	* gas/i386/x86-64-avx.d: Likewise.
	* gas/i386/x86-64-avx-intel.d: Likewise.
	* gas/i386/x86-64-sse2avx.d: Likewise.

	* gas/i386/i386.exp: Run arch-avx-1-3, arch-avx-1-4,
	arch-avx-1-5 and arch-avx-1-6.

2009-02-03  DJ Delorie  <dj@redhat.com>

	* gas/mep/relocs.d: Updated for new configuration.
	* gas/mep/complex-relocs.exp: Likewise.

2009-02-03  Sandip Matte  <sandip@rmicorp.com>

	* gas/mips/mips.exp (xlr): New architecture.
	(xlr-ext): Run test.
	* gas/mips/xlr-ext.d, gas/mips/xlr-ext.s: New.

2009-02-03  Maxim Kuvyrkov  <maxim@codesourcery.com>

	* gas/m68k/tls-gd-3.d, gas/m68k/tls-gd-3.s: New test.
	* gas/m68k/all.exp: Run it.

2009-01-29  Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/copro.s: Avoid using r15 where not permitted.
	* gas/arm/copro.d: Adjust accordingly.
	* gas/arm/thumb2_bad_reg.s: New.
	* gas/arm/thumb2_bad_reg.l: Likewise.
	* gas/arm/thumb2_bad_reg.d: Likewise.

2009-01-29  Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/thumb32.s: Add tests for orn and rrx.
	* gas/arm/thumb32.d: Adjust accordingly.
	* gas/arm/thumb32.l: Likewise.
	* gas/arm/thumb2_invert.s: Add tests for orn and orr.
	* gas/arm/thumb2_invert.d: Adjust accordingly.
	* gas/arm/tcompat.s: Add tests for rrx.
	* gas/arm/tcompat.d: Adjust accordingly.

2009-01-29  Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/thumb32.s (qadd): Add tests for them.
	* gas/arm/thumb32.d: Adjust accordingly.

2009-01-29  Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/thumb32.s (qadd): Add qadd, qdadd, qsub, and qdsub.
	* gas/arm/thumb32.d: Likewise.

2009-01-29  Paul Brook  <paul@codesourcery.com>
            Mark Mitchell  <mark@codesourcery.com>

	* gas/arm/thumb2_mul.s: New file.
	* gas/arm/thumb2_mul.d: Likewise.
	* gas/arm/thumb2_mul-bad.s: Likewise.
	* gas/arm/thumb2_mul-bad.d: Likewise.
	* gas/arm/thumb2_mul-bad.l: Likewise.
	* gas/arm/t16-bad.s: Add tests for"mul" with high registers.
	* gas/arm/t16-bad.l: Update accordingly.

2009-01-29  Nick Clifton  <nickc@redhat.com>

	* gas/all/gas.exp: Expect forward test to fail for MeP.
	Expect relax test to fail for MeP.
	* gas/mep/relocs.d: Update expected disassembly.

2009-01-27  Nick Clifton  <nickc@redhat.com>

	* gas/arm/attr-cpu-directive.d: Only run test for EABI targets.
	* gas/arm/attr-default.d : Likewise.
	* gas/arm/attr-march-all.d: Likewise.
	* gas/arm/attr-march-armv1.d: Likewise.
	* gas/arm/attr-march-armv2.d: Likewise.
	* gas/arm/attr-march-armv2a.d: Likewise.
	* gas/arm/attr-march-armv2s.d: Likewise.
	* gas/arm/attr-march-armv3.d: Likewise.
	* gas/arm/attr-march-armv3m.d: Likewise.
	* gas/arm/attr-march-armv4.d: Likewise.
	* gas/arm/attr-march-armv4t.d: Likewise.
	* gas/arm/attr-march-armv4txm.d: Likewise.
	* gas/arm/attr-march-armv4xm.d: Likewise.
	* gas/arm/attr-march-armv5.d: Likewise.
	* gas/arm/attr-march-armv5t.d: Likewise.
	* gas/arm/attr-march-armv5te.d: Likewise.
	* gas/arm/attr-march-armv5tej.d: Likewise.
	* gas/arm/attr-march-armv5texp.d: Likewise.
	* gas/arm/attr-march-armv5txm.d: Likewise.
	* gas/arm/attr-march-armv6-m.d: Likewise.
	* gas/arm/attr-march-armv6.d: Likewise.
	* gas/arm/attr-march-armv6j.d: Likewise.
	* gas/arm/attr-march-armv6k.d: Likewise.
	* gas/arm/attr-march-armv6kt2.d: Likewise.
	* gas/arm/attr-march-armv6t2.d: Likewise.
	* gas/arm/attr-march-armv6z.d: Likewise.
	* gas/arm/attr-march-armv6zk.d: Likewise.
	* gas/arm/attr-march-armv6zkt2.d: Likewise.
	* gas/arm/attr-march-armv6zt2.d: Likewise.
	* gas/arm/attr-march-armv7-a.d: Likewise.
	* gas/arm/attr-march-armv7-m.d: Likewise.
	* gas/arm/attr-march-armv7-r.d: Likewise.
	* gas/arm/attr-march-armv7.d: Likewise.
	* gas/arm/attr-march-armv7a.d: Likewise.
	* gas/arm/attr-march-armv7m.d: Likewise.
	* gas/arm/attr-march-armv7r.d: Likewise.
	* gas/arm/attr-march-iwmmxt.d: Likewise.
	* gas/arm/attr-march-iwmmxt2.d: Likewise.
	* gas/arm/attr-march-xscale.d: Likewise.
	* gas/arm/attr-mcpu.d: Likewise.
	* gas/arm/attr-mfpu-arm1020e.d: Likewise.
	* gas/arm/attr-mfpu-arm1020t.d: Likewise.
	* gas/arm/attr-mfpu-arm1136jf-s.d: Likewise.
	* gas/arm/attr-mfpu-arm1136jfs.d: Likewise.
	* gas/arm/attr-mfpu-arm7500fe.d: Likewise.
	* gas/arm/attr-mfpu-fpa.d: Likewise.
	* gas/arm/attr-mfpu-fpa10.d: Likewise.
	* gas/arm/attr-mfpu-fpa11.d: Likewise.
	* gas/arm/attr-mfpu-fpe.d: Likewise.
	* gas/arm/attr-mfpu-fpe2.d: Likewise.
	* gas/arm/attr-mfpu-fpe3.d: Likewise.
	* gas/arm/attr-mfpu-maverick.d: Likewise.
	* gas/arm/attr-mfpu-neon-fp16.d: Likewise.
	* gas/arm/attr-mfpu-neon.d: Likewise.
	* gas/arm/attr-mfpu-softfpa.d: Likewise.
	* gas/arm/attr-mfpu-softvfp+vfp.d: Likewise.
	* gas/arm/attr-mfpu-softvfp.d: Likewise.
	* gas/arm/attr-mfpu-vfp.d: Likewise.
	* gas/arm/attr-mfpu-vfp10-r0.d: Likewise.
	* gas/arm/attr-mfpu-vfp10.d: Likewise.
	* gas/arm/attr-mfpu-vfp3.d: Likewise.
	* gas/arm/attr-mfpu-vfp9.d: Likewise.
	* gas/arm/attr-mfpu-vfpv2.d: Likewise.
	* gas/arm/attr-mfpu-vfpv3-d16.d: Likewise.
	* gas/arm/attr-mfpu-vfpv3.d: Likewise.
	* gas/arm/attr-mfpu-vfpxd.d: Likewise.
	* gas/arm/attr-order.d: Likewise.
	* gas/arm/attr-override-cpu-directive.d: Likewise.
	* gas/arm/attr-override-mcpu.d: Likewise.

2009-01-27  Nick Clifton  <nickc@redhat.com>

	* gas/lib/gas-defs.exp: Update description of run_dump_test proc.

	* gas/mips/dli.d: Pass -64 to gas.
	* gas/mips/mips64-mips3d-incl.d: Likewise.
	* gas/mips/octeon.d: Likewise.
	* gas/mips/sb1-ext-mdmx.d: Likewise.
	* gas/mips/sb1-ext-ps.d: Likewise.
	* gas/mips/e32el-rel2.s: Pass -march=mips3 to gas.
	Update expected relocs.
	* gas/mips/ld-ilocks-addr32.d: Do not run for tx39 targets.
	* gas/mips/mips.exp: Remove 'ilocks' variable.
	Add ecoff targets to 'addr32' variable.
	Set 'no_mips16' for ecoff targets.
	Do not run div-ilocks or mul-ilocks test variants.
	* gas/mips/mips16-intermix.d: Use nm instead of objdump so that
	the symbol table output is sorted.  Update expecetd output.

2009-01-26  Andrew Stubbs  <ams@codesourcery.com>

	* gas/arm/attr-cpu-directive.d: New file.
	* gas/arm/attr-cpu-directive.s: New file.
	* gas/arm/attr-default.d: New file.
	* gas/arm/attr-march-all.d: New file.
	* gas/arm/attr-march-armv1.d: New file.
	* gas/arm/attr-march-armv2.d: New file.
	* gas/arm/attr-march-armv2a.d: New file.
	* gas/arm/attr-march-armv2s.d: New file.
	* gas/arm/attr-march-armv3.d: New file.
	* gas/arm/attr-march-armv3m.d: New file.
	* gas/arm/attr-march-armv4.d: New file.
	* gas/arm/attr-march-armv4t.d: New file.
	* gas/arm/attr-march-armv4txm.d: New file.
	* gas/arm/attr-march-armv4xm.d: New file.
	* gas/arm/attr-march-armv5.d: New file.
	* gas/arm/attr-march-armv5t.d: New file.
	* gas/arm/attr-march-armv5te.d: New file.
	* gas/arm/attr-march-armv5tej.d: New file.
	* gas/arm/attr-march-armv5texp.d: New file.
	* gas/arm/attr-march-armv5txm.d: New file.
	* gas/arm/attr-march-armv6-m.d: New file.
	* gas/arm/attr-march-armv6.d: New file.
	* gas/arm/attr-march-armv6j.d: New file.
	* gas/arm/attr-march-armv6k.d: New file.
	* gas/arm/attr-march-armv6kt2.d: New file.
	* gas/arm/attr-march-armv6t2.d: New file.
	* gas/arm/attr-march-armv6z.d: New file.
	* gas/arm/attr-march-armv6zk.d: New file.
	* gas/arm/attr-march-armv6zkt2.d: New file.
	* gas/arm/attr-march-armv6zt2.d: New file.
	* gas/arm/attr-march-armv7-a.d: New file.
	* gas/arm/attr-march-armv7-m.d: New file.
	* gas/arm/attr-march-armv7-r.d: New file.
	* gas/arm/attr-march-armv7.d: New file.
	* gas/arm/attr-march-armv7a.d: New file.
	* gas/arm/attr-march-armv7m.d: New file.
	* gas/arm/attr-march-armv7r.d: New file.
	* gas/arm/attr-march-iwmmxt.d: New file.
	* gas/arm/attr-march-iwmmxt2.d: New file.
	* gas/arm/attr-march-xscale.d: New file.
	* gas/arm/attr-mcpu.d: New file.
	* gas/arm/attr-mfpu-arm1020e.d: New file.
	* gas/arm/attr-mfpu-arm1020t.d: New file.
	* gas/arm/attr-mfpu-arm1136jf-s.d: New file.
	* gas/arm/attr-mfpu-arm1136jfs.d: New file.
	* gas/arm/attr-mfpu-arm7500fe.d: New file.
	* gas/arm/attr-mfpu-fpa.d: New file.
	* gas/arm/attr-mfpu-fpa10.d: New file.
	* gas/arm/attr-mfpu-fpa11.d: New file.
	* gas/arm/attr-mfpu-fpe.d: New file.
	* gas/arm/attr-mfpu-fpe2.d: New file.
	* gas/arm/attr-mfpu-fpe3.d: New file.
	* gas/arm/attr-mfpu-maverick.d: New file.
	* gas/arm/attr-mfpu-neon-fp16.d: New file.
	* gas/arm/attr-mfpu-neon.d: New file.
	* gas/arm/attr-mfpu-softfpa.d: New file.
	* gas/arm/attr-mfpu-softvfp+vfp.d: New file.
	* gas/arm/attr-mfpu-softvfp.d: New file.
	* gas/arm/attr-mfpu-vfp.d: New file.
	* gas/arm/attr-mfpu-vfp10-r0.d: New file.
	* gas/arm/attr-mfpu-vfp10.d: New file.
	* gas/arm/attr-mfpu-vfp3.d: New file.
	* gas/arm/attr-mfpu-vfp9.d: New file.
	* gas/arm/attr-mfpu-vfpv2.d: New file.
	* gas/arm/attr-mfpu-vfpv3-d16.d: New file.
	* gas/arm/attr-mfpu-vfpv3.d: New file.
	* gas/arm/attr-mfpu-vfpxd.d: New file.
	* gas/arm/attr-order.d: Update Tag_ARM_ISA_use and Tag_THUMB_ISA_use.
	* gas/arm/attr-override-cpu-directive.d: New file.
	* gas/arm/attr-override-cpu-directive.s: New file.
	* gas/arm/attr-override-mcpu.d: New file.
	* gas/arm/attr-override-mcpu.s: New file.
	* gas/arm/blank.s: New file.
	* gas/arm/eabi_attr_1.d: Update Tag_ARM_ISA_use and Tag_THUMB_ISA_use.

2009-01-26  Nick Clifton  <nickc@redhat.com>

	* gas/arm/attr-order.d: Do not run this test for non-ELF based ARM
	targets.

2009-01-24  Andreas Schwab  <schwab@suse.de>

	* gas/lns/lns.exp: Don't run lns-duplicate for d10v target.

2009-01-23  Andreas Schwab  <schwab@suse.de>

	* gas/mips/mips16-e.d: Adjust for change in LOCAL_LABEL_PREFIX.
	* gas/mips/mipsel16-e.d: Likewise.
	* gas/mips/tmips16-e.d: Likewise.
	* gas/mips/tmipsel16-e.d: Likewise.

2009-01-19  Nick Clifton  <nickc@redhat.com>

	* lib/gas-defs.exp (run_list_test): Fix typo in comment.

2009-01-19  Nick Clifton  <nickc@redhat.com>

	* gas/arm/attr-syntax.d: Do not run for non-ELF based ARM
	targets.

2009-01-19  Andrew Stubbs  <ams@codesourcery.com>

	* gas/arm/attr-order.d: New file.
	* gas/arm/attr-order.s: New file.

2009-01-16  Andrew Stubbs  <ams@codesourcery.com>
	    Daniel Jacobowitz  <dan@codesourcery.com>

	* gas/arm/attr-syntax.d: New file.
	* gas/arm/attr-syntax.s: New file.

2009-01-15  Nick Clifton  <nickc@redhat.com>

	PR 9722
	* gas/testsuite/gas/arm/archv6m.d: Update expected NOP opcode.
	* gas/testsuite/gas/arm/pr9722.s: New test.
	* gas/testsuite/gas/arm/pr9722.d: Expected disassembly.

2009-01-14  Peter Bergner  <bergner@vnet.ibm.com>

	* gas/ppc/power6.s ("mtfsf", "mtfsf.", "mtfsfi", "mtfsfi."): Add tests.
	* gas/ppc/power6.d: Likewise.

2009-01-12  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/i386/sse-noavx.s: Add tests for lfence, mfence and movnti.
	* gas/i386/x86-64-sse-noavx.s: Likewise.

	* gas/i386/sse-noavx.d: Updated.
	* gas/i386/x86-64-sse-noavx.d: Likewise.

2009-01-12  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/i386/opts.s: Add tests for add, adc, and, cmp, or, sbb,
	sub and xor.
	* gas/i386/x86-64-opts.s: Likewise.

	* gas/i386/opts.d: Updated.
	* gas/i386/opts-intel.d: Likewise.
	* gas/i386/sse2avx-opts.d: Likewise.
	* gas/i386/sse2avx-opts-intel.d: Likewise.
	* gas/i386/x86-64-opts.d: Likewise.
	* gas/i386/x86-64-opts-intel.d: Likewise.
	* gas/i386/x86-64-sse2avx-opts.d: Likewise.
	* gas/i386/x86-64-sse2avx-opts-intel.d: Likewise.

2009-01-10  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/i386/arch-10.s: Add clflush and syscall.
	* gas/i386/x86-64-arch-2.s: Likewise.

	* gas/i386/arch-10.d: Updated.
	* gas/i386/arch-10-1.l: Likewise.
	* gas/i386/arch-10-2.l: Likewise.
	* gas/i386/arch-10-3.l: Likewise.
	* gas/i386/arch-10-4.l: Likewise.
	* gas/i386/x86-64-arch-2.d: Likewise.

2009-01-09  H.J. Lu  <hongjiu.lu@intel.com>

	* gas/i386/arch-10.s: Add rdtscp.
	* gas/i386/x86-64-arch-2.s: Likewise.

	* gas/i386/arch-10.d: Updated.
	* gas/i386/arch-10-1.l: Likewise.
	* gas/i386/arch-10-2.l: Likewise.
	* gas/i386/arch-10-3.l: Likewise.
	* gas/i386/arch-10-4.l: Likewise.
	* gas/i386/x86-64-arch-2.d: Likewise.

2009-01-06  Chao-ying Fu  <fu@mips.com>

	* gas/mips/jalr.s, gas/mips/jalr.l: Add more tests for jalr
	and jalr.hb.

2009-01-06  H.J. Lu  <hongjiu.lu@intel.com>

	AVX Programming Reference (December, 2008)
	* gas/i386/avx.s: Add tests for 256bit vmovntdq, vmovntpd and
	vmovntps.
	* gas/i386/x86-64-avx.s: Likewise.

	* gas/i386/avx.d: Updated.
	* gas/i386/avx-intel.d: Likewise.
	* gas/i386/x86-64-avx.d: Likewise.
	* gas/i386/x86-64-avx-intel.d: Likewise.

2009-01-05  H.J. Lu  <hongjiu.lu@intel.com>

	AVX Programming Reference (December, 2008)
	* gas/i386/arch-10.s: Replace vfmaddpd with vfmadd132pd.
	* gas/i386/x86-64-arch-2.s: Likewise.

	* gas/i386/arch-10.d: Updated.
	* gas/i386/arch-10-1.l: Likewise.
	* gas/i386/arch-10-2.l: Likewise.
	* gas/i386/arch-10-3.l: Likewise.
	* gas/i386/arch-10-4.l: Likewise.
	* gas/i386/avx.d: Likewise.
	* gas/i386/avx-intel.d: Likewise.
	* gas/i386/inval-avx.l: Likewise.
	* gas/i386/x86-64-arch-2.d: Likewise.
	* gas/i386/x86-64-avx.d: Likewise.
	* gas/i386/x86-64-avx-intel.d: Likewise.
	* gas/i386/x86-64-inval-avx.l: Likewise.

	* gas/i386/avx.s: Remove vpermil2ps/vpermil2pd and FMA
	instructions.  Update tests.
	* gas/i386/inval-avx.s: Likewise.
	* gas/i386/x86-64-avx.s: Likewise.
	* gas/i386/x86-64-inval-avx.s: Likewise.

	* gas/i386/fma.d: New.
	* gas/i386/fma.s: Likewise.
	* gas/i386/fma-intel.d: Likewise.
	* gas/i386/x86-64-fma.d: Likewise.
	* gas/i386/x86-64-fma.s: Likewise.
	* gas/i386/x86-64-fma-intel.d: Likewise.

	* gas/i386/i386.exp: Run fma, fma-intel, x86-64-fma and
	x86-64-fma-intel.

For older changes see ChangeLog-2008

Local Variables:
mode: change-log
left-margin: 8
fill-column: 74
version-control: never
End: