ChangeLog-2012 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. 2012-12-20 Greta Yorsh <Greta.Yorsh@arm.com>
  2. * gas/arm/srs-t2.s: Add tests for missing srs modes.
  3. * gas/arm/srs-t2.l: Update expected output.
  4. * gas/arm/srs-arm.s: Add tests for missing srs modes.
  5. * gas/arm/srs-arm.l: Update expected output.
  6. * gas/arm/archv6.s: Add tests for missing rfe modes.
  7. * gas/arm/archv6.d: Update expected output.
  8. 2012-12-18 David Holsgrove <david.holsgrove@xilinx.com>
  9. * gas/microblaze/relax_size.exp: New file - test object size after
  10. linker relaxation.
  11. * gas/microblaze/relax_size.s: Likewise.
  12. * gas/microblaze/relax_size.elf: Likewise.
  13. * gas/microblaze/relax_size2.s: Likewise.
  14. * gas/microblaze/relax_size2.elf: Likewise.
  15. 2012-12-17 Nick Clifton <nickc@redhat.com>
  16. * config/default.exp: Add copyright notice.
  17. * gas/aarch64/aarch64.exp: Likewise.
  18. * gas/all/gas.exp: Likewise.
  19. * gas/alpha/alpha.exp: Likewise.
  20. * gas/arc/arc.exp: Likewise.
  21. * gas/arc/warn.exp: Likewise.
  22. * gas/arm/arm.exp: Likewise.
  23. * gas/bfin/bfin.exp: Likewise.
  24. * gas/bfin/error.exp: Likewise.
  25. * gas/cfi/cfi.exp: Likewise.
  26. * gas/cr16/cr16.exp: Likewise.
  27. * gas/cr16/pic.exp: Likewise.
  28. * gas/crx/allinsn.exp: Likewise.
  29. * gas/d10v/d10v.exp: Likewise.
  30. * gas/d30v/d30.exp: Likewise.
  31. * gas/dlx/alltests.exp: Likewise.
  32. * gas/elf/elf.exp: Likewise.
  33. * gas/epiphany/allinsn.exp: Likewise.
  34. * gas/fr30/allinsn.exp: Likewise.
  35. * gas/fr30/fr30.exp: Likewise.
  36. * gas/frv/allinsn.exp: Likewise.
  37. * gas/h8300/h8300-coff.exp: Likewise.
  38. * gas/h8300/h8300-elf.exp: Likewise.
  39. * gas/h8300/h8300.exp: Likewise.
  40. * gas/h8300/t01_mov.exp: Likewise.
  41. * gas/h8300/t02_mova.exp: Likewise.
  42. * gas/h8300/t03_add.exp: Likewise.
  43. * gas/h8300/t04_sub.exp: Likewise.
  44. * gas/h8300/t05_cmp.exp: Likewise.
  45. * gas/h8300/t06_ari2.exp: Likewise.
  46. * gas/h8300/t07_ari3.exp: Likewise.
  47. * gas/h8300/t08_or.exp: Likewise.
  48. * gas/h8300/t09_xor.exp: Likewise.
  49. * gas/h8300/t10_and.exp: Likewise.
  50. * gas/h8300/t11_logs.exp: Likewise.
  51. * gas/h8300/t12_bit.exp: Likewise.
  52. * gas/h8300/t13_otr.exp: Likewise.
  53. * gas/hppa/README: Likewise.
  54. * gas/i386/i386.exp: Likewise.
  55. * gas/i386/ilp32/ilp32.exp: Likewise.
  56. * gas/i386/ilp32/cfi/ilp32.exp: Likewise.
  57. * gas/i386/ilp32/elf/ilp32.exp: Likewise.
  58. * gas/i386/ilp32/lns/ilp32.exp: Likewise.
  59. * gas/i860/README.i860: Likewise.
  60. * gas/i860/i860.exp: Likewise.
  61. * gas/ia64/ia64.exp: Likewise.
  62. * gas/ieee-fp/x930509a.exp: Likewise.
  63. * gas/iq2000/allinsn.exp: Likewise.
  64. * gas/iq2000/load-hazards.exp: Likewise.
  65. * gas/iq2000/odd-ldw.exp: Likewise.
  66. * gas/iq2000/odd-sdw.exp: Likewise.
  67. * gas/iq2000/yield.exp: Likewise.
  68. * gas/lm32/all.exp: Likewise.
  69. * gas/lns/lns.exp: Likewise.
  70. * gas/m32r/allinsn.exp: Likewise.
  71. * gas/m32r/error.exp: Likewise.
  72. * gas/m32r/m32r2.exp: Likewise.
  73. * gas/m32r/m32rx.exp: Likewise.
  74. * gas/m32r/pic.exp: Likewise.
  75. * gas/m32r/rel32.exp: Likewise.
  76. * gas/m68hc11/m68hc11.exp: Likewise.
  77. * gas/m68k/all.exp: Likewise.
  78. * gas/m68k-coff/gas.exp: Likewise.
  79. * gas/mach-o/mach-o.exp: Likewise.
  80. * gas/macros/macros.exp: Likewise.
  81. * gas/mcore/allinsn.exp: Likewise.
  82. * gas/mep/allinsn.exp: Likewise.
  83. * gas/mep/complex-relocs.exp: Likewise.
  84. * gas/microblaze/allinsn.exp: Likewise.
  85. * gas/microblaze/endian.exp: Likewise.
  86. * gas/microblaze/reloc_sym.exp: Likewise.
  87. * gas/microblaze/special_reg.exp: Likewise.
  88. * gas/mips/mips.exp: Likewise.
  89. * gas/mri/mri.exp: Likewise.
  90. * gas/msp430/msp430.exp: Likewise.
  91. * gas/mt/errors.exp: Likewise.
  92. * gas/mt/mt.exp: Likewise.
  93. * gas/mt/relocs.exp: Likewise.
  94. * gas/openrisc/allinsn.exp: Likewise.
  95. * gas/pdp11/pdp11.exp: Likewise.
  96. * gas/pj/pj.exp: Likewise.
  97. * gas/ppc/ppc.exp: Likewise.
  98. * gas/rx/make-d: Likewise.
  99. * gas/rx/rx.exp: Likewise.
  100. * gas/score/relax.exp: Likewise.
  101. * gas/score/relax_32.exp: Likewise.
  102. * gas/sparc/mismatch.exp: Likewise.
  103. * gas/sparc/sparc.exp: Likewise.
  104. * gas/sparc-solaris/addend.exp: Likewise.
  105. * gas/sparc-solaris/gas.exp: Likewise.
  106. * gas/sun4/addend.exp: Likewise.
  107. * gas/symver/symver.exp: Likewise.
  108. * gas/tic4x/tic4x.exp: Likewise.
  109. * gas/tic54x/tic54x.exp: Likewise.
  110. * gas/tic6x/tic6x.exp: Likewise.
  111. * gas/vax/vax.exp: Likewise.
  112. * gas/xc16x/xc16x.exp: Likewise.
  113. * gas/xgate/xgate.exp: Likewise.
  114. * gas/xstormy16/allinsn.exp: Likewise.
  115. * gas/xtensa/all.exp: Likewise.
  116. * gas/z80/z80.exp: Likewise.
  117. * gas/z8k/z8k.exp: Likewise.
  118. * lib/gas-dg.exp: Likewise.
  119. 2012-12-06 Yufeng Zhang <yufeng.zhang@arm.com>
  120. * gas/aarch64/illegal.s: Add test for unaccepted LDR literal.
  121. * gas/aarch64/illegal.l: Update.
  122. * gas/aarch64/programmer-friendly.s: Add tests for LDR literal with
  123. the auto-generation of literal in pool.
  124. * gas/aarch64/programmer-friendly.d: Update.
  125. 2012-11-28 Julian Brown <julian@codesourcery.com>
  126. * gas/arm/bl-local-2.s: New test.
  127. * gas/arm/bl-local-2.d: New.
  128. 2012-11-27 Roland McGrath <mcgrathr@google.com>
  129. * lib/gas-defs.exp (run_dump_test): If as options include
  130. --compress-debug-sections and zlib is not available, report
  131. the test as unsupported.
  132. 2012-11-23 Alan Modra <amodra@gmail.com>
  133. * gas/ppc/astest2.d: Pass -Mppc to objdump.
  134. 2012-11-21 David Holsgrove <david.holsgrove@xilinx.com>
  135. * gas/microblaze/allinsn.s: Add swapb, swaph
  136. * gas/microblaze/allinsn.d: Likewise
  137. 2012-11-21 David Holsgrove <david.holsgrove@xilinx.com>
  138. * gas/microblaze/allinsn.s: Test use of SHR, SLR
  139. * gas/microblaze/allinsn.d: Likewise
  140. 2012-11-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
  141. * gas/s390/zarch-z9-109.d: Fix srstu opcode.
  142. * gas/s390/zarch-z900.d: Replace lasp with strag.
  143. 2012-11-20 Roland McGrath <mcgrathr@google.com>
  144. * gas/arm/macro-pld.s: New file.
  145. * gas/arm/macro-pld.d: New file.
  146. 2012-11-14 David Holsgrove <david.holsgrove@xilinx.com>
  147. * gas/microblaze/allinsn.s: Add mbar and sleep
  148. * gas/microblaze/allinsn.d: Likewise
  149. 2012-11-14 David Holsgrove <david.holsgrove@xilinx.com>
  150. * gas/microblaze/allinsn.s: Add clz insn
  151. * gas/microblaze/allinsn.d: Likewise
  152. 2012-11-14 David Holsgrove <david.holsgrove@xilinx.com>
  153. * gas/microblaze/allinsn.exp: New file - test newly added opcodes
  154. * gas/microblaze/allinsn.s: Likewise
  155. * gas/microblaze/allinsn.d: Likewise
  156. 2012-11-14 Ulrich Weigand <uweigand@de.ibm.com>
  157. * gas/ppc/astest.d: Update for fixup changes.
  158. * gas/ppc/astest64.d: Likewise.
  159. * gas/ppc/astest2.d: Likewise.
  160. * gas/ppc/astest2_64.d: Likewise.
  161. * gas/ppc/test1elf32.d: Likewise.
  162. * gas/ppc/test1elf64.d: Likewise.
  163. 2012-11-09 David Holsgrove <david.holsgrove@xilinx.com>
  164. * gas/microblaze/endian.exp: New file - endian testcase for microblaze / microblazeel.
  165. * gas/microblaze/endian.s: Likewise.
  166. * gas/microblaze/endian_be.d: Likewise.
  167. * gas/microblaze/endian_le.d: Likewise.
  168. * gas/microblaze/endian_le_elf.d: Likewise.
  169. * gas/microblaze/reloc_sym.d: Update to accept targets other than elf32-microblaze.
  170. * gas/microblaze/special_reg.d: Likewise.
  171. 2012-11-08 Maciej W. Rozycki <macro@codesourcery.com>
  172. * gas/mips/lui.d: New test.
  173. * gas/mips/micromips@lui.d: New test.
  174. * gas/mips/lui-1.l: New list test.
  175. * gas/mips/lui-2.l: New list test.
  176. * gas/mips/lui.s: New test source.
  177. * gas/mips/lui-1.s: New test source.
  178. * gas/mips/lui-2.s: New test source.
  179. * gas/mips/mips.exp: Run the new tests.
  180. 2012-11-07 David Holsgrove <david.holsgrove@xilinx.com>
  181. * testsuite/gas/microblaze/special_reg.exp: Add test case.
  182. * testsuite/gas/microblaze/special_reg.s: Likewise.
  183. * testsuite/gas/microblaze/special_reg.d: Likewise.
  184. 2012-11-01 Chao-ying Fu <fu@mips.com>
  185. * gas/mips/micromips-b16.d: New test.
  186. * gas/mips/micromips-b16.s: New test source.
  187. * gas/mips/mips.exp: Run the new test.
  188. 2012-11-01 Chao-ying Fu <fu@mips.com>
  189. Maciej W. Rozycki <macro@codesourcery.com>
  190. * gas/mips/micromips-branch-delay.l: Update messages for 16-bit
  191. delay slot changes.
  192. * gas/mips/micromips-warn-branch-delay.d: New test.
  193. * gas/mips/micromips-warn-branch-delay.l: Stderr output for the
  194. new test.
  195. * gas/mips/micromips-warn-branch-delay-1.d: New test.
  196. * gas/mips/micromips-warn-branch-delay.s: New test source.
  197. * gas/mips/micromips-warn-branch-delay-1.s: New test source.
  198. * gas/mips/mips.exp: Run the new tests.
  199. 2012-10-31 David Holsgrove <david.holsgrove@xilinx.com>
  200. * gas/microblaze: New.
  201. * gas/microblaze/reloc_sym.exp: Add test case.
  202. * gas/microblaze/reloc_strongsym.s: Likewise.
  203. * gas/microblaze/reloc_weaksym.s: Likewise.
  204. * gas/microblaze/reloc_sym.d: Likewise.
  205. 2012-10-29 Alan Modra <amodra@gmail.com>
  206. * gas/cfi/cfi.exp: Remove redundant ppc test. Exclude
  207. powerpc-pe targets from cfi-common-6 test.
  208. * gas/cfi/cfi-ppc-1.d: Use objdump to handle pe.
  209. * gas/cfi/cfi-ppc-1.s: Don't use .type and .size.
  210. * gas/ppc/ppc.exp: Exclude various tests for powerpc-pe. Exclude
  211. vle tests for le targets.
  212. * gas/ppc/476.d, * gas/ppc/476.s: Update for le output. Use .text
  213. rather than section directive with quotes.
  214. * gas/ppc/a2.d, * gas/ppc/a2.s: Likewise.
  215. * gas/ppc/altivec.d, * gas/ppc/altivec.s: Likewise.
  216. * gas/ppc/altivec2.d: Likewise.
  217. * gas/ppc/altivec_and_spe.d: Likewise.
  218. * gas/ppc/astest.d: Likewise.
  219. * gas/ppc/astest2.d: Likewise.
  220. * gas/ppc/astest2_64.d: Likewise.
  221. * gas/ppc/astest64.d: Likewise.
  222. * gas/ppc/booke.d, * gas/ppc/booke.s: Likewise.
  223. * gas/ppc/cell.d, * gas/ppc/cell.s: Likewise.
  224. * gas/ppc/common.d, * gas/ppc/common.s: Likewise.
  225. * gas/ppc/e500.d, * gas/ppc/e500.s: Likewise.
  226. * gas/ppc/e500mc.d, * gas/ppc/e500mc.s: Likewise.
  227. * gas/ppc/e500mc64_nop.d, * gas/ppc/e500mc64_nop.s: Likewise.
  228. * gas/ppc/e5500_nop.d, * gas/ppc/e5500_nop.s: Likewise.
  229. * gas/ppc/e6500.d, * gas/ppc/e6500.s: Likewise.
  230. * gas/ppc/e6500_nop.d, * gas/ppc/e6500_nop.s: Likewise.
  231. * gas/ppc/machine.d: Likewise.
  232. * gas/ppc/power4.d, * gas/ppc/power4.s: Likewise.
  233. * gas/ppc/power4_32.d, * gas/ppc/power4_32.s: Likewise.
  234. * gas/ppc/power6.d, * gas/ppc/power6.s: Likewise.
  235. * gas/ppc/power7.d, * gas/ppc/power7.s: Likewise.
  236. * gas/ppc/ppc750ps.d, * gas/ppc/ppc750ps.s: Likewise.
  237. * gas/ppc/regnames.d: Likewise.
  238. * gas/ppc/simpshft.d: Likewise.
  239. * gas/ppc/test1elf32.d: Likewise.
  240. * gas/ppc/test1elf64.d: Likewise.
  241. * gas/ppc/titan.d, * gas/ppc/titan.s: Likewise.
  242. * gas/ppc/vle-reloc.s: Likewise.
  243. * gas/ppc/vle-simple-1.s: Likewise.
  244. * gas/ppc/vle-simple-2.s: Likewise.
  245. * gas/ppc/vle-simple-3.s: Likewise.
  246. * gas/ppc/vle-simple-4.s: Likewise.
  247. * gas/ppc/vle-simple-5.s: Likewise.
  248. * gas/ppc/vle-simple-6.s: Likewise.
  249. * gas/ppc/vle.s: Likewise.
  250. * gas/ppc/vsx.d, * gas/ppc/vsx.s: Likewise.
  251. 2012-10-27 James Lemke <jwlemke@codesourcery.com>
  252. * gas/m68k/all.exp: Exclude pr11676 for fido-*-*.
  253. 2012-10-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
  254. * gas/testsuite/gas/s390/zarch-z10.d: Refreshed.
  255. * gas/testsuite/gas/s390/zarch-z10.s: Refreshed.
  256. * gas/testsuite/gas/s390/zarch-z196.d: Refreshed.
  257. * gas/testsuite/gas/s390/zarch-z196.s: Refreshed.
  258. * gas/testsuite/gas/s390/zarch-z9-109.d: Refreshed.
  259. * gas/testsuite/gas/s390/zarch-z990.d: Refreshed.
  260. * gas/testsuite/gas/s390/zarch-z990.s: Refreshed.
  261. * gas/testsuite/gas/s390/zarch-zEC12.d: Refreshed.
  262. * gas/testsuite/gas/s390/zarch-zEC12.s: Refreshed.
  263. 2012-10-26 Christian Groessler <chris@groessler.org>
  264. * gas/z8k/z8k.exp: Run translate-ops test.
  265. * gas/z8k/translate-ops.s: New file.
  266. * gas/z8k/translate-ops.d: New file.
  267. 2012-10-26 Alan Modra <amodra@gmail.com>
  268. * gas/ppc/power4.s: Fix invalid lq offsets.
  269. * gas/ppc/power4.d: Update.
  270. 2012-10-24 Roland McGrath <mcgrathr@google.com>
  271. * gas/i386/rex.s: Add test of REX prefix before fsave (i.e. fwait).
  272. * gas/i386/rex.d: Update.
  273. 2012-10-22 Peter Bergner <bergner@vnet.ibm.com>
  274. * gas/ppc/altivec.s <vcfpsxws>: Fix opcode spelling.
  275. 2012-10-15 Yufeng Zhang <yufeng.zhang@arm.com>
  276. * gas/aarch64/sysreg-1.s: Add tests of rmr_el1, rmr_el2 and rmr_el3.
  277. * gas/aarch64/sysreg-1.d: Update.
  278. * gas/aarch64/illegal.s: Add tests of daifset and daifclr.
  279. * gas/aarch64/illegal.d: Update.
  280. 2012-10-15 Yufeng Zhang <yufeng.zhang@arm.com>
  281. * gas/aarch64/illegal-2.s: Add test case.
  282. * gas/aarch64/illegal-2.l: Update.
  283. 2012-10-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
  284. * gas/hppa/basic/fmemLRbug.s: Remove double load and store instructions
  285. which reference the right half of a floating point register.
  286. * gas/hppa/basic/basic.exp: Adjust expected results.
  287. 2012-10-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
  288. * gas/hppa/basic/unit.s: Remove uxor instructions with unit condition
  289. involving a carry.
  290. * gas/hppa/basic/unit2.s: Likewise.
  291. * gas/hppa/basic/basic.exp: Adjusted expected.
  292. 2012-10-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
  293. * gas/arm/armv8-a+fp.d: Use preferred form of vrint instruction
  294. variants for disassembly.
  295. * gas/arm/armv8-a+fp.s: Likewise.
  296. * gas/arm/armv8-a+simd.d: Likewise.
  297. * gas/arm/armv8-a+simd.s: Likewise.
  298. 2012-10-11 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
  299. * gas/arm/ldgesb-bad.d: New file.
  300. * gas/arm/ldgesb-bad.l: Likewise.
  301. * gas/arm/ldgesb-bad.s: Likewise.
  302. * gas/arm/ldgesh-bad.d: Likewise.
  303. * gas/arm/ldgesh-bad.l: Likewise.
  304. * gas/arm/ldgesh-bad.s: Likewise.
  305. * gas/arm/ldsgeb.d: Likewise.
  306. * gas/arm/ldsgeb.s: Likewise.
  307. * gas/arm/ldsgeb.l: Likewise.
  308. * gas/arm/ldsgeh.d: Likewise.
  309. * gas/arm/ldsgeh.s: Likewise.
  310. * gas/arm/ldsgeh.l: Likewise.
  311. 2012-10-09 Nagajyothi Eggone <nagajyothi.eggone@amd.com>
  312. * gas/i386/i386.exp: Run bdver3 test cases.
  313. * gas/i386/nops-1-bdver3.d: New.
  314. * gas/i386/arch-10-bdver3.d: New.
  315. * gas/i386/x86-64-nops-1-bdver3.d: New.
  316. * gas/i386/x86-64-arch-2-bdver3.d: New.
  317. 2012-10-05 Peter Bergner <bergner@vnet.ibm.com>
  318. * gas/ppc/power7.d: Add tests for mfppr, mfppr32, mtppr and mtppr32.
  319. * gas/ppc/power7.s: Likewise.
  320. * gas/ppc/altivec.d: Add tests for all legacy Altivec instructions.
  321. * gas/ppc/altivec.s: Likewise.
  322. * gas/ppc/altivec2.d: New test file.
  323. * gas/ppc/altivec2.s: Likewise.
  324. * gas/ppc/ppc.exp: Run it.
  325. 2012-10-04 Nick Clifton <nickc@redhat.com>
  326. * gas/v850/v850e1.d: Fix expected disassembly of clr1, not1, set1
  327. and tst1 insns.
  328. 2012-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
  329. * gas/s390/zarch-zEC12.d: Fix branch preload instructions.
  330. * gas/s390/zarch-zEC12.s: Likewise.
  331. 2012-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
  332. * gas/s390/s390.exp: Run zEC12 tests.
  333. * gas/s390/zarch-zEC12.d: New file.
  334. * gas/s390/zarch-zEC12.s: New file.
  335. 2012-09-25 Saravanan Ekanathan <saravanan.ekanathan@amd.com>
  336. * gas/i386/arch-10-bdver1.d: New file to test bdver1 core.
  337. * gas/i386/x86-64-arch-2-bdver1.d: Likewise.
  338. * gas/i386/i386.exp: Run bdver1 testcases.
  339. * gas/i386/arch-10-bdver2.d: Updated -march flags.
  340. * gas/i386/arch-10-btver1.d: Likewise.
  341. * gas/i386/arch-10-btver2.d: Likewise.
  342. * gas/i386/x86-64-arch-2-bdver2.d: Likewise.
  343. * gas/i386/x86-64-arch-2-btver1.d: Likewise.
  344. * gas/i386/x86-64-arch-2-btver2.d: Likewise.
  345. 2012-09-23 Maciej W. Rozycki <macro@codesourcery.com>
  346. * gas/mips/hilo-diff-eb.d: New test.
  347. * gas/mips/hilo-diff-eb-n32.d: New test.
  348. * gas/mips/hilo-diff-eb-n64.d: New test.
  349. * gas/mips/hilo-diff-el.d: New test.
  350. * gas/mips/hilo-diff-el-n32.d: New test.
  351. * gas/mips/hilo-diff-el-n64.d: New test.
  352. * gas/mips/mips16@hilo-diff-eb.d: New test.
  353. * gas/mips/mips16@hilo-diff-eb-n32.d: New test.
  354. * gas/mips/mips16@hilo-diff-eb-n64.d: New test.
  355. * gas/mips/mips16@hilo-diff-el.d: New test.
  356. * gas/mips/mips16@hilo-diff-el-n32.d: New test.
  357. * gas/mips/mips16@hilo-diff-el-n64.d: New test.
  358. * gas/mips/micromips@hilo-diff-eb.d: New test.
  359. * gas/mips/micromips@hilo-diff-eb-n32.d: New test.
  360. * gas/mips/micromips@hilo-diff-eb-n64.d: New test.
  361. * gas/mips/micromips@hilo-diff-el.d: New test.
  362. * gas/mips/micromips@hilo-diff-el-n32.d: New test.
  363. * gas/mips/micromips@hilo-diff-el-n64.d: New test.
  364. * gas/mips/hilo-diff.s: New test source.
  365. * gas/mips/mips.exp: Run the new tests.
  366. 2012-09-23 Richard Sandiford <rdsandiford@googlemail.com>
  367. * gas/mips/elf-rel22.s, gas/mips/elf-rel22.d: Add more tests.
  368. * gas/mips/elf-rel29.s, gas/mips/elf-rel29.d,
  369. gas/mips/micromips@elf-rel29.d, gas/mips/elf-rel30.s,
  370. gas/mips/elf-rel30.l: New tests.
  371. * gas/mips/mips.exp: Run them.
  372. 2012-09-23 Richard Sandiford <rdsandiford@googlemail.com>
  373. * gas/mips/dot-1.s, gas/mips/dot-1.d, gas/mips/micromips@dot-1.d,
  374. gas/mips/mips16@dot-1.d: New test.
  375. * gas/mips/mips.exp: Run it.
  376. 2012-09-20 H.J. Lu <hongjiu.lu@intel.com>
  377. * gas/i386/i386.exp: Run x86-64-arch-2-1 and x86-64-arch-2-2.
  378. * gas/i386/x86-64-arch-2-1.l: New file.
  379. * gas/i386/x86-64-arch-2-1.s: Likewise.
  380. * gas/i386/x86-64-arch-2-2.l: Likewise.
  381. * gas/i386/x86-64-arch-2-2.s: Likewise.
  382. 2012-09-20 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
  383. * gas/i386/x86-64-arch-2.s: Add test for cmpxchg16b.
  384. * gas/i386/x86-64-arch-2.d: Update correspondingly.
  385. * gas/i386/x86-64-arch-2-bdver2.d: Likewise.
  386. * gas/i386/x86-64-arch-2-btver1.d: Likewise.
  387. * gas/i386/x86-64-arch-2-btver2.d: Likewise.
  388. * gas/i386/x86-64-arch-2-lzcnt.d: Likewise.
  389. * gas/i386/x86-64-arch-2-prefetchw.d: Likewise.
  390. * gas/i386/ilp32/x86-64-arch-2.d: Likewise.
  391. 2012-09-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
  392. * gas/arm/armv8-a-bad.l: Updated for changed mnemonics.
  393. * gas/arm/armv8-a-bad.s: Likewise.
  394. * gas/arm/armv8-a.d: Likewise.
  395. * gas/arm/armv8-a.s: Likewise.
  396. * gas/arm/inst.s: Added test for ldrt encoding compatibly with ldralt.
  397. * gas/arm/inst.d: Updated.
  398. 2012-09-18 Chao-ying Fu <fu@mips.com>
  399. * gas/mips/micromips.d: Correct the disassembly of SWXC1.
  400. * gas/mips/micromips-trap.d: Likewise.
  401. * gas/mips/micromips@24k-triple-stores-1.d: Likewise.
  402. * gas/mips/micromips@mips4-fp.d: Likewise.
  403. 2012-09-17 Yufeng Zhang <yufeng.zhang@arm.com>
  404. * gas/aarch64/crypto.d (#as): Update for v8->v8-A change.
  405. * gas/aarch64/int-insns.d (#as): Likewise.
  406. * gas/aarch64/legacy_reg_names.s (.arch): Likewise.
  407. * gas/aarch64/neon-not.s (.arch): Likewise.
  408. * gas/aarch64/neon-vfp-reglist-post.s (.arch): Likewise.
  409. * gas/aarch64/neon-vfp-reglist.s (.arch): Likewise.
  410. 2012-09-12 Chris Schlumberger-Socha <chris.schlumberger-socha@arm.com>
  411. * gas/aarch64/reloc-insn.d
  412. (BFD_RELOC_AARCH64_GOT_LD_PREL19): Add expected asm for new reloc test.
  413. * gas/aarch64/reloc-insn.s
  414. (BFD_RELOC_AARCH64_GOT_LD_PREL19): Add test for reloc.
  415. 2012-09-04 Sergey A. Guriev <sergey.a.guriev@intel.com>
  416. * gas/testsuite/gas/ia64/psn.d: New file.
  417. * gas/testsuite/gas/ia64/psn.s: New file.
  418. * gas/testsuite/gas/ia64/ia64.exp: Add new testcase.
  419. * gas/testsuite/gas/ia64/opc-i.d: Fixed failing tests.
  420. * gas/testsuite/gas/ia64/opc-m.d: Ditto.
  421. 2012-09-01 Hans-Peter Nilsson <hp@bitrange.com>
  422. PR gas/14521
  423. * gas/mmix/group-1.d, gas/mmix/group-1.s: New test.
  424. 2012-08-24 H.J. Lu <hongjiu.lu@intel.com>
  425. * gas/elf/group0c.d: Skip Solaris.
  426. 2012-08-24 H.J. Lu <hongjiu.lu@intel.com>
  427. * gas/i386/ilp32/ilp32.exp (gas_64_check): Renamed to ...
  428. (gas_x32_check): This. Check elf32-x86-64.
  429. Remove Solaris check.
  430. * gas/i386/ilp32/cfi/ilp32.exp: Likewise.
  431. * gas/i386/ilp32/elf/ilp32.exp: Likewise.
  432. * gas/i386/ilp32/lns/ilp32.exp: Likewise.
  433. 2012-08-24 H.J. Lu <hongjiu.lu@intel.com>
  434. * gas/i386/ilp32/ilp32.exp: Skip Solaris.
  435. * gas/i386/ilp32/cfi/ilp32.exp: Likewise.
  436. * gas/i386/ilp32/elf/ilp32.exp: Likewise.
  437. * gas/i386/ilp32/lns/ilp32.exp: Likewise.
  438. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  439. * gas/arm/armv8-a+crypto.s: Update testcase.
  440. * gas/arm/armv8-a+crypto.d: Likewise.
  441. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  442. * gas/arm/armv8-a+crypto.d: Update testcase.
  443. * gas/arm/armv8-a+crypto.s: Likewise.
  444. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  445. * gas/arm/armv8-a+crypto.d: Update testcase.
  446. * gas/arm/armv8-a+crypto.s: Likewise.
  447. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  448. * gas/arm/armv8-a+crypto.d: New testcase.
  449. * gas/arm/armv8-a+crypto.s: Likewise.
  450. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  451. * gas/arm/armv8-a+fp.d: Update testcase.
  452. * gas/arm/armv8-a+fp.s: Likewise.
  453. * gas/arm/half-prec-vfpv3.s: Likewise.
  454. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  455. * gas/arm/armv8-a+fpv5.d: Update testcase.
  456. * gas/arm/armv8-a+fpv5.s: Likewise.
  457. * gas/arm/armv8-a+simdv3.d: Likewise.
  458. * gas/arm/armv8-a+simdv3.s: Likewise.
  459. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  460. * gas/arm/armv8-a+fp.d: Update testcase.
  461. * gas/arm/armv8-a+fp.s: Likewise.
  462. * gas/arm/armv8-a+simd.d: Likewise.
  463. * gas/arm/armv8-a+simd.s: Likewise.
  464. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  465. * gas/testsuite/gas/armv8-a+fp.d: Update testcase.
  466. * gas/testsuite/gas/armv8-a+fp.s: Likewise.
  467. * gas/testsuite/gas/armv8-a+simd.d: New testcase.
  468. * gas/testsuite/gas/armv8-a+simd.s: Likewise.
  469. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  470. * gas/arm/armv8-a+fp.d: New testcase.
  471. * gas/arm/armv8-a+fp.s: Likewise.
  472. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  473. * gas/arm/armv8-a-bad.l: Update testcase.
  474. * gas/arm/armv8-a-bad.s: Likewise.
  475. * gas/arm/armv8-a.d: Likewise.
  476. * gas/arm/armv8-a.s: Likewise.
  477. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  478. * gas/arm/armv8-a-bad.l: Update for HLT.
  479. * gas/arm/armv8-a-bad.s: Likewise.
  480. * gas/arm/armv8-a.d: Likewise.
  481. * gas/arm/armv8-a.s: Likewise.
  482. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  483. * gas/arm/armv8-a.d: Update.
  484. * gas/arm/armv8-a.s: Likewise.
  485. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  486. * gas/arm/armv8-a.s: New testcase.
  487. * gas/arm/armv8-a.d: Likewise.
  488. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  489. * gas/arm/armv8-a-barrier.s: New testcase.
  490. * gas/arm/armv8-a-barrier-arm.d: Likewise.
  491. * gas/arm/armv8-a-barrier-thumb.d: Likewise.
  492. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  493. * gas/arm/armv8-a-bad.l: Update
  494. * gas/arm/armv8-a-bad.s: Likewise.
  495. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  496. * gas/arm/armv8-a-it-bad.d: New testcase.
  497. * gas/arm/armv8-a-it-bad.l: Likewise.
  498. * gas/arm/armv8-a-it-bad.s: Likewise.
  499. * gas/arm/ldr-t-bad.s: Update testcase.
  500. * gas/arm/ldr-t.d: Likewise.
  501. * gas/arm/ldr-t.s: Likewise.
  502. * gas/arm/neon-cond-bad-inc.s: Likewise.
  503. * gas/arm/sp-pc-validations-bad-t: Likewise.
  504. * gas/arm/vfp-fma-inc.s: Likewise.
  505. * gas/arm/vfp-neon-syntax-inc.s: Likewise.
  506. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  507. * gas/arm/armv8-a-bad.l: Update testcase.
  508. * gas/arm/armv8-a-bad.s: Likewise.
  509. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  510. * gas/arm/armv8-a-bad.d: New testcase.
  511. * gas/arm/armv8-a-bad.l: Likewise.
  512. * gas/arm/armv8-a-bad.s: Likewise.
  513. * gas/arm/depr-swp.l: Update for change in expected output.
  514. * gas/arm/depr-swp.s: Add additional test.
  515. 2012-08-24 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
  516. * gas/arm/attr-march-all.d: Update for change in expected
  517. output.
  518. * gas/arm/attr-mfpu-vfpv4-d16.d: Likewise.
  519. * gas/arm/attr-mfpu-vfpv4.d: Likewise.
  520. * gas/arm/attr-march-armv8-a+crypto.d: New testcase.
  521. * gas/arm/attr-march-armv8-a+fp.d: Likewise.
  522. * gas/arm/attr-march-armv8-a+simd.d: Likewise.
  523. * gas/arm/attr-march-armv8-a.d: Likewise.
  524. 2012-08-21 David S. Miller <davem@davemloft.net>
  525. * gas/sparc/crypto.d: Fix opcodes for 4-arg crypto instructions.
  526. 2012-08-20 Edmar Wienskoski <edmar@freescale.com>
  527. * gas/ppc/e6500.d: Changed opcode for vabsdub, vabsduh, vabsduw,
  528. mviwsplt.
  529. 2012-08-17 Nagajyothi Eggone <nagajyothi.eggone@amd.com>
  530. * gas/i386/i386.exp: Run btver1 and btver2 test cases.
  531. * gas/i386/nops-1-btver1.d: New.
  532. * gas/i386/nops-1-btver2.d: New.
  533. * gas/i386/arch-10-btver1.d: New.
  534. * gas/i386/arch-10-btver2.d: New.
  535. * gas/i386/x86-64-nops-1-btver1.d: New.
  536. * gas/i386/x86-64-nops-1-btver2.d: New.
  537. * gas/i386/x86-64-arch-2-btver1.d: New.
  538. * gas/i386/x86-64-arch-2-btver2.d: New.
  539. 2012-08-15 Peter Bergner <bergner@vnet.ibm.com>
  540. * gas/ppc/power4.s <lq, stq>: Add more tests.
  541. * gas/ppc/power4.d: Likewise.
  542. 2012-08-15 Peter Bergner <bergner@vnet.ibm.com>
  543. * gas/ppc/common.d ("nop", "xnop"): Add tests.
  544. * gas/ppc/common.s: Likewise.
  545. * gas/ppc/power7.d ("yield", "mdoio", "mdoom"): Add tests.
  546. * gas/ppc/power7.s: Likewise.
  547. 2012-08-14 H.J. Lu <hongjiu.lu@intel.com>
  548. PR gas/14457
  549. * gas/i386/i386.exp: Run reg-bad.
  550. * gas/i386/reg-bad.l: New.
  551. * gas/i386/reg-bad.s: Likewise.
  552. 2012-08-14 Hans-Peter Nilsson <hp@bitrange.com>
  553. * gas/mmix/err-fb-2.s: New test.
  554. 2012-08-13 Ian Bolton <ian.bolton@arm.com>
  555. Laurent Desnogues <laurent.desnogues@arm.com>
  556. Jim MacArthur <jim.macarthur@arm.com>
  557. Marcus Shawcroft <marcus.shawcroft@arm.com>
  558. Nigel Stephens <nigel.stephens@arm.com>
  559. Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
  560. Richard Earnshaw <rearnsha@arm.com>
  561. Sofiane Naci <sofiane.naci@arm.com>
  562. Tejas Belagod <tejas.belagod@arm.com>
  563. Yufeng Zhang <yufeng.zhang@arm.com>
  564. * gas/aarch64: New directory.
  565. * gas/aarch64/aarch64.exp: New file.
  566. * gas/aarch64/addsub.d: New file.
  567. * gas/aarch64/addsub.s: New file.
  568. * gas/aarch64/advsimd-across.d: New file.
  569. * gas/aarch64/advsimd-across.s: New file.
  570. * gas/aarch64/advsimd-misc.d: New file.
  571. * gas/aarch64/advsimd-misc.s: New file.
  572. * gas/aarch64/advsisd-copy.d: New file.
  573. * gas/aarch64/advsisd-copy.s: New file.
  574. * gas/aarch64/advsisd-misc.d: New file.
  575. * gas/aarch64/advsisd-misc.s: New file.
  576. * gas/aarch64/alias.d: New file.
  577. * gas/aarch64/alias.s: New file.
  578. * gas/aarch64/bitfield-alias.d: New file.
  579. * gas/aarch64/bitfield-alias.s: New file.
  580. * gas/aarch64/bitfield-bfm.d: New file.
  581. * gas/aarch64/bitfield-bfm.s: New file.
  582. * gas/aarch64/bitfield-dump: New file.
  583. * gas/aarch64/bitfield-no-aliases.d: New file.
  584. * gas/aarch64/crypto.d: New file.
  585. * gas/aarch64/crypto.s: New file.
  586. * gas/aarch64/diagnostic.d: New file.
  587. * gas/aarch64/diagnostic.l: New file.
  588. * gas/aarch64/diagnostic.s: New file.
  589. * gas/aarch64/floatdp2.d: New file.
  590. * gas/aarch64/floatdp2.s: New file.
  591. * gas/aarch64/fp_cvt_int.d: New file.
  592. * gas/aarch64/fp_cvt_int.s: New file.
  593. * gas/aarch64/illegal-2.d: New file.
  594. * gas/aarch64/illegal-2.l: New file.
  595. * gas/aarch64/illegal-2.s: New file.
  596. * gas/aarch64/illegal.d: New file.
  597. * gas/aarch64/illegal.l: New file.
  598. * gas/aarch64/illegal.s: New file.
  599. * gas/aarch64/inst-directive.d: New file.
  600. * gas/aarch64/inst-directive.s: New file.
  601. * gas/aarch64/int-insns.d: New file.
  602. * gas/aarch64/int-insns.s: New file.
  603. * gas/aarch64/ldst-exclusive.d: New file.
  604. * gas/aarch64/ldst-exclusive.s: New file.
  605. * gas/aarch64/ldst-reg-imm-post-ind.d: New file.
  606. * gas/aarch64/ldst-reg-imm-post-ind.s: New file.
  607. * gas/aarch64/ldst-reg-imm-pre-ind.d: New file.
  608. * gas/aarch64/ldst-reg-imm-pre-ind.s: New file.
  609. * gas/aarch64/ldst-reg-pair.d: New file.
  610. * gas/aarch64/ldst-reg-pair.s: New file.
  611. * gas/aarch64/ldst-reg-reg-offset.d: New file.
  612. * gas/aarch64/ldst-reg-reg-offset.s: New file.
  613. * gas/aarch64/ldst-reg-uns-imm.d: New file.
  614. * gas/aarch64/ldst-reg-uns-imm.s: New file.
  615. * gas/aarch64/ldst-reg-unscaled-imm.d: New file.
  616. * gas/aarch64/ldst-reg-unscaled-imm.s: New file.
  617. * gas/aarch64/legacy_reg_names.d: New file.
  618. * gas/aarch64/legacy_reg_names.l: New file.
  619. * gas/aarch64/legacy_reg_names.s: New file.
  620. * gas/aarch64/mapmisc.d: New file.
  621. * gas/aarch64/mapmisc.dat: New file.
  622. * gas/aarch64/mapmisc.s: New file.
  623. * gas/aarch64/mapping.d: New file.
  624. * gas/aarch64/mapping.s: New file.
  625. * gas/aarch64/mapping2.d: New file.
  626. * gas/aarch64/mapping2.s: New file.
  627. * gas/aarch64/mapping3.d: New file.
  628. * gas/aarch64/mapping3.s: New file.
  629. * gas/aarch64/mapping4.d: New file.
  630. * gas/aarch64/mapping4.s: New file.
  631. * gas/aarch64/mov-no-aliases.d: New file.
  632. * gas/aarch64/mov.d: New file.
  633. * gas/aarch64/mov.s: New file.
  634. * gas/aarch64/movi.d: New file.
  635. * gas/aarch64/movi.s: New file.
  636. * gas/aarch64/msr.d: New file.
  637. * gas/aarch64/msr.s: New file.
  638. * gas/aarch64/neon-fp-cvt-int.d: New file.
  639. * gas/aarch64/neon-fp-cvt-int.s: New file.
  640. * gas/aarch64/neon-frint.d: New file.
  641. * gas/aarch64/neon-frint.s: New file.
  642. * gas/aarch64/neon-ins.d: New file.
  643. * gas/aarch64/neon-ins.s: New file.
  644. * gas/aarch64/neon-not.d: New file.
  645. * gas/aarch64/neon-not.s: New file.
  646. * gas/aarch64/neon-vfp-reglist-post.d: New file.
  647. * gas/aarch64/neon-vfp-reglist-post.s: New file.
  648. * gas/aarch64/neon-vfp-reglist.d: New file.
  649. * gas/aarch64/neon-vfp-reglist.s: New file.
  650. * gas/aarch64/no-aliases.d: New file.
  651. * gas/aarch64/optional.d: New file.
  652. * gas/aarch64/optional.s: New file.
  653. * gas/aarch64/programmer-friendly.d: New file.
  654. * gas/aarch64/programmer-friendly.s: New file.
  655. * gas/aarch64/reloc-data.d: New file.
  656. * gas/aarch64/reloc-data.s: New file.
  657. * gas/aarch64/reloc-insn.d: New file.
  658. * gas/aarch64/reloc-insn.s: New file.
  659. * gas/aarch64/shifted.d: New file.
  660. * gas/aarch64/shifted.s: New file.
  661. * gas/aarch64/symbol.d: New file.
  662. * gas/aarch64/symbol.s: New file.
  663. * gas/aarch64/sysreg-1.d: New file.
  664. * gas/aarch64/sysreg-1.s: New file.
  665. * gas/aarch64/sysreg.d: New file.
  666. * gas/aarch64/sysreg.s: New file.
  667. * gas/aarch64/system.d: New file.
  668. * gas/aarch64/system.s: New file.
  669. * gas/aarch64/tlbi_op.d: New file.
  670. * gas/aarch64/tlbi_op.s: New file.
  671. * gas/aarch64/tls.d: New file.
  672. * gas/aarch64/tls.s: New file.
  673. * gas/aarch64/verbose-error.d: New file.
  674. * gas/aarch64/verbose-error.l: New file.
  675. * gas/aarch64/verbose-error.s: New file.
  676. 2012-08-11 Saravanan Ekanathan <saravanan.ekanathan@amd.com>
  677. PR gas/14423
  678. * gas/i386/arch-10-bdver2.d: New file.
  679. * gas/i386/x86-64-arch-2-bdver2.d: Likewise.
  680. * gas/i386/i386.exp: Run new test
  681. 2012-08-07 Roland McGrath <mcgrathr@google.com>
  682. * gas/i386/prefetch.s: New file.
  683. * gas/i386/prefetch.d: New file.
  684. * gas/i386/prefetch-intel.d: New file.
  685. * gas/i386/x86-64-prefetch.d: New file.
  686. * gas/i386/x86-64-prefetch-intel.d: New file.
  687. * gas/i386/i386.exp: Run them.
  688. 2012-08-07 Jan Beulich <jbeulich@suse.com>
  689. * gas/i386/x86-64-segovr.{s,l}: New.
  690. * gas/i386/i386.exp: Run new test.
  691. 2012-08-07 Jan Beulich <jbeulich@suse.com>
  692. * gas/i386/vgather-check-error.{s,l}: New.
  693. * gas/i386/vgather-check-none.{s,d}: New.
  694. * gas/i386/vgather-check-warn.{d,e}: New.
  695. * gas/i386/vgather-check.{s,d}: New.
  696. * gas/i386/x86-64-vgather-check-error.{s,l}: New.
  697. * gas/i386/x86-64-vgather-check-none.{s,d}: New.
  698. * gas/i386/x86-64-vgather-check-warn.{d,e}: New.
  699. * gas/i386/x86-64-vgather-check.{s,d}: New.
  700. * gas/i386/i386.exp: Run new tests.
  701. 2012-08-07 Jan Beulich <jbeulich@suse.com>
  702. * gas/i386/x86-64-specific-reg.{s,l}: New.
  703. * gas/i386/i386.exp: Run new test.
  704. 2012-08-07 Nick Clifton <nickc@redhat.com>
  705. * gas/i386/secrel.s: Add test of <symbol>@SECREL32.
  706. * gas/i386/secrel.d: Add expected disassembly.
  707. 2012-08-06 Maciej W. Rozycki <macro@codesourcery.com>
  708. * gas/mips/mips.exp: Set has_newabi for all Linux targets.
  709. * gas/mips/cfi-n64-1.d: Adjust for targets that do not infer the
  710. ISA from the ABI.
  711. * gas/mips/elf-rel-got-n32.d: Likewise.
  712. * gas/mips/elf-rel-got-n64.d: Likewise.
  713. * gas/mips/elf-rel-xgot-n32.d: Likewise.
  714. * gas/mips/elf-rel-xgot-n64.d: Likewise.
  715. * gas/mips/elf-rel18.d: Likewise.
  716. * gas/mips/elf-rel28-n32.d: Likewise.
  717. * gas/mips/elf-rel28-n64.d: Likewise.
  718. * gas/mips/jal-newabi.d: Likewise.
  719. * gas/mips/ldstla-n64-shared.d: Likewise.
  720. * gas/mips/ldstla-n64-sym32.d: Likewise.
  721. * gas/mips/ldstla-n64.d: Likewise.
  722. * gas/mips/macro-warn-1-n32.d: Likewise.
  723. * gas/mips/macro-warn-2-n32.d: Likewise.
  724. * gas/mips/n32-consec.d: Likewise.
  725. 2012-08-06 Maciej W. Rozycki <macro@codesourcery.com>
  726. * gas/mips/mips.exp: Set has_newabi for mips*-sde-elf* too.
  727. * gas/mips/elf-rel-got-n32.s: Adjust padding.
  728. * gas/mips/elf-rel-got-n64.s: Likewise.
  729. * gas/mips/elf-rel23.s: Likewise.
  730. * gas/mips/elf-rel28.s: Likewise.
  731. * gas/mips/n32-consec.s: Likewise.
  732. * gas/mips/elf-rel-xgot-n32.d: Adjust output expected.
  733. * gas/mips/elf-rel-xgot-n64.d: Likewise.
  734. * gas/mips/elf-rel23.d: Likewise.
  735. * gas/mips/elf-rel23a.d: Likewise.
  736. * gas/mips/elf-rel23b.d: Likewise.
  737. * gas/mips/elf-rel28-n32.d: Likewise.
  738. 2012-08-06 Maciej W. Rozycki <macro@codesourcery.com>
  739. * gas/mips/branch-swap-2.l: New list test.
  740. * gas/mips/branch-swap-2.s: New test source.
  741. * gas/mips/mips.exp: Run the new test.
  742. 2012-08-06 Roland McGrath <mcgrathr@google.com>
  743. * gas/i386/x86-64-stack.s: Add cases for push segment register.
  744. * gas/i386/x86-64-stack.d: Updated.
  745. * gas/i386/x86-64-stack-suffix.d: Updated.
  746. * gas/i386/x86-64-stack-intel.d: Updated.
  747. * gas/i386/ilp32/x86-64-stack.d: Updated.
  748. * gas/i386/ilp32/x86-64-stack-suffix.d: Updated.
  749. * gas/i386/ilp32/x86-64-stack-intel.d: Updated.
  750. * gas/i386/x86-64-stack.s: Add cases for push immediate.
  751. * gas/testsuite/gas/i386/ilp32/x86-64-stack-intel.d: Updated.
  752. * gas/testsuite/gas/i386/ilp32/x86-64-stack-suffix.d: Updated.
  753. * gas/testsuite/gas/i386/ilp32/x86-64-stack.d: Updated.
  754. * gas/testsuite/gas/i386/x86-64-stack-intel.d: Updated.
  755. * gas/testsuite/gas/i386/x86-64-stack-suffix.d: Updated.
  756. * gas/testsuite/gas/i386/x86-64-stack.d: Updated.
  757. * gas/i386/x86-64-stack.s (try): Also try just rex.W (0x48) prefix.
  758. * gas/testsuite/gas/i386/ilp32/x86-64-stack-intel.d: Updated.
  759. * gas/testsuite/gas/i386/ilp32/x86-64-stack-suffix.d: Updated.
  760. * gas/testsuite/gas/i386/ilp32/x86-64-stack.d: Updated.
  761. * gas/testsuite/gas/i386/x86-64-stack-intel.d: Updated.
  762. * gas/testsuite/gas/i386/x86-64-stack-suffix.d: Updated.
  763. * gas/testsuite/gas/i386/x86-64-stack.d: Updated.
  764. 2012-08-02 H.J. Lu <hongjiu.lu@intel.com>
  765. PR binutils/14420
  766. * gas/elf/dwarf2-1.d: Updated.
  767. * gas/elf/dwarf2-2.d: Likwise.
  768. * gas/i386/dw2-compress-1.d: Likwise.
  769. 2012-08-01 James Lemke <jwlemke@codesourcery.com>
  770. * gas/cfi/cfi-ppc-1.d: Allow for code alignment of 2 or 4.
  771. 2012-07-31 Catherine Moore <clm@codesourcery.com>
  772. Maciej W. Rozycki <macro@codesourcery.com>
  773. * gas/mips/micromips@mips32-dsp.d: New test.
  774. * gas/mips/micromips@mips32-dspr2.d: New test.
  775. * gas/mips/mips32-dsp.d: Remove -mips32r2.
  776. * gas/mips/mips32-dspr2.d: Likewise.
  777. * gas/mips/mips32-dsp.s: Update padding.
  778. * gas/mips/mips32-dspr2.s: Likewise.
  779. * gas/mips/mips.exp: Use run_dump_test_arches to run MIPS32 DSP
  780. tests.
  781. 2012-07-31 H.J. Lu <hongjiu.lu@intel.com>
  782. * gas/d30v/bittest.l: Updated.
  783. 2012-07-31 H.J. Lu <hongjiu.lu@intel.com>
  784. * gas/i386/rdseed-intel.d: Append "#pass".
  785. 2012-07-30 H.J. Lu <hongjiu.lu@intel.com>
  786. * gas/i386/inval-equ-2.l: Updated.
  787. 2012-07-27 Sean Keys <skeys@ipdatasys.com>
  788. * gas/xgate/xgate.exp: Added hi/lo test.
  789. * gas/xgate/hilo.d: New test file
  790. * gas/xgate/hilo.s: Net test source file.
  791. 2012-07-24 Sandra Loosemore <sandra@codesourcery.com>
  792. Jie Zhang <jzhang918@gmail.com>
  793. * gas/arm/adr.d: New test.
  794. * gas/arm/adr.s: New test.
  795. 2012-07-16 Michael Zolotukhin <michael.v.zolotukhin@intel.com>
  796. * gas/i386/i386.exp: Run adx, rdseed and prefetchw tests.
  797. * gas/i386/x86-64-arch-2.s: Use prefetchw as 3dnow and Prfchw tests.
  798. * gas/i386/arch-10.s: Likewise.
  799. * gas/i386/arch-10-1.l: Changed correspondingly.
  800. * gas/i386/arch-10-2.l: Likewise.
  801. * gas/i386/arch-10-3.l: Likewise.
  802. * gas/i386/arch-10-4.l: Likewise.
  803. * gas/i386/arch-10.d: Likewise.
  804. * gas/i386/arch-10-lzcnt.d: Likewise.
  805. * gas/i386/x86-64-arch-2.d: Likewise.
  806. * gas/i386/x86-64-arch-2-lzcnt.d: Likewise.
  807. * gas/i386/ilp32/x86-64-arch-2.d: Likewise.
  808. * gas/i386/arch-10-prefetchw.d: New file.
  809. * gas/i386/x86-64-arch-2-prefetchw.d: Likewise.
  810. * gas/i386/rdseed.s: Likewise.
  811. * gas/i386/rdseed.d: Likewise.
  812. * gas/i386/rdseed-intel.d: Likewise.
  813. * gas/i386/adx.s: Likewise.
  814. * gas/i386/adx.d: Likewise.
  815. * gas/i386/adx-intel.d: Likewise.
  816. * gas/i386/x86-64-rdseed.s: Likewise.
  817. * gas/i386/x86-64-rdseed.d: Likewise.
  818. * gas/i386/x86-64-rdseed-intel.d: Likewise.
  819. * gas/i386/x86-64-adx.s: Likewise.
  820. * gas/i386/x86-64-adx.d: Likewise.
  821. * gas/i386/x86-64-adx-intel.d: Likewise.
  822. 2012-07-02 Roland McGrath <mcgrathr@google.com>
  823. * gas/i386/rep-suffix.s: Add 'rep nop' case.
  824. * gas/i386/x86-64-rep-suffix.s: Likewise.
  825. * gas/i386/rep-suffix.d: Updated.
  826. * gas/i386/x86-64-rep-suffix.d: Likewise.
  827. * gas/i386/ilp32/x86-64-rep-suffix.d: Likewise.
  828. 2012-07-02 H.J. Lu <hongjiu.lu@intel.com>
  829. * gas/i386/i386.exp: Don't run rep-bsf nor rep-ret.
  830. * gas/i386/rep-bsf.d: Removed.
  831. * gas/i386/rep-bsf.s: Likewise.
  832. * gas/i386/rep-ret.d: Likewise.
  833. * gas/i386/rep-ret.s: Likewise.
  834. * gas/i386/rep-suffix.d: Updated.
  835. * gas/i386/x86-64-rep-suffix.d: Likewise.
  836. * gas/i386/ilp32/x86-64-rep-suffix.d: Likewise.
  837. * gas/i386/rep-suffix.s: Add tests for bsf, bsr and ret.
  838. * gas/i386/x86-64-rep-suffix.s: Likewise.
  839. 2012-06-30 H.J. Lu <hongjiu.lu@intel.com>
  840. PR gas/14315
  841. * gas/elf/common1.d: New file.
  842. * gas/elf/common1.l: Likewise.
  843. * gas/elf/common1.s: Likewise.
  844. * gas/elf/common2.d: Likewise.
  845. * gas/elf/common2.l: Likewise.
  846. * gas/elf/common2.s: Likewise.
  847. * gas/elf/elf.exp: Run common1 and common2.
  848. 2012-06-29 Alan Modra <amodra@gmail.com>
  849. * gas/lns/lns.exp (lns-common-1): Add crx to alt target list.
  850. 2012-06-28 Nick Clifton <nickc@redhat.com>
  851. PR gas/14260
  852. * gas/arm/ldr-t-bad.s: Add test of bogus use of literal pool
  853. addressing.
  854. * gas/arm/ldr-t-bad.l: Update expected assembler error message
  855. output.
  856. 2012-06-28 Nick Clifton <nickc@redhat.com>
  857. * gas/lns/lns.exp: Use alternate lns-common test for targets
  858. enabling linker relaxation.
  859. * gas/lns/lns-big-delta.d: Allow for output from architectures
  860. with 32-bit addresses.
  861. 2012-06-27 Alan Modra <amodra@gmail.com>
  862. * gas/i386/rep-ret.s: Zero pad section.
  863. * gas/i386/rep-ret.d: Update.
  864. 2012-06-22 Roland McGrath <mcgrathr@google.com>
  865. * gas/i386/rep-ret.d: New file.
  866. * gas/i386/rep-ret.s: New file.
  867. * gas/i386/i386.exp: Add the new test.
  868. * gas/i386/rep-bsf.d: New file.
  869. * gas/i386/rep-bsf.s: New file.
  870. * gas/i386/i386.exp: Add the new test.
  871. 2012-06-13 H.J. Lu <hongjiu.lu@intel.com>
  872. * gas/i386/ilp32/x86-64-dc_a.d: New.
  873. * gas/i386/ilp32/x86-64-dc_a.s: Likewise.
  874. 2012-06-11 Andreas Schwab <schwab@linux-m68k.org>
  875. * gas/ppc/e500mc.d: Update.
  876. * gas/ppc/476.d: Update.
  877. 2012-06-07 H.J. Lu <hongjiu.lu@intel.com>
  878. * gas/all/gas.exp: Don't run rept.
  879. * gas/all/rept.d: Moved to ...
  880. * gas/i386/rept.d: Here.
  881. * gas/all/rept.s: Moved to ...
  882. * gas/i386/rept.s: Here.
  883. * gas/i386/i386.exp: Run rept.
  884. 2012-06-07 H.J. Lu <hongjiu.lu@intel.com>
  885. PR gas/14201
  886. * gas/all/gas.exp: Run rept.
  887. * gas/all/rept.d: New file.
  888. * gas/all/rept.s: Likewise.
  889. 2012-05-29 Roland McGrath <mcgrathr@google.com>
  890. * gas/i386/bundle-bad.s: Remove nested .bundle_lock case.
  891. * gas/i386/bundle-bad.l: Remove expected error line.
  892. * gas/i386/bundle-lock.s: Add nested .bundle_lock case.
  893. * gas/i386/bundle-lock.d: Update expectations.
  894. 2012-05-28 Nick Clifton <nickc@redhat.com>
  895. * gas/elf/syms.s: New test - checks the generation of multibyte
  896. symbol names.
  897. * gas/elf/syms.d: New file - expected readelf output.
  898. * gas/elf/elf.exp: Add syms.
  899. 2012-05-25 Alan Modra <amodra@gmail.com>
  900. * gas/lns/lns-big-delta.s: Add nops.
  901. * gas/lns/lns-big-delta.d: Update.
  902. 2012-05-19 Alan Modra <amodra@gmail.com>
  903. * gas/tic6x/unwind-1.d: Update for readelf changes.
  904. * gas/tic6x/unwind-2.d: Likewise.
  905. * gas/tic6x/unwind-3.d: Likewise.
  906. 2012-05-17 H.J. Lu <hongjiu.lu@intel.com>
  907. * gas/all/weakref1.d: Expect addend as signed.
  908. * gas/arm/pic_vxworks.d: Likewise.
  909. * gas/arm/wince.d: Likewise.
  910. * gas/h8300/h8300.exp: Likewise.
  911. * gas/i386/sub.d: Likewise.
  912. * gas/mips/ecoff@ld.d: Likewise.
  913. * gas/mips/ecoff@sd.d: Likewise.
  914. * gas/mips/l_d-n32.d: Likewise.
  915. * gas/mips/l_d-n64.d: Likewise.
  916. * gas/mips/l_d.d: Likewise.
  917. * gas/mips/ld-n32.d: Likewise.
  918. * gas/mips/ld-n64.d: Likewise.
  919. * gas/mips/ld.d: Likewise.
  920. * gas/mips/mips1@l_d.d: Likewise.
  921. * gas/mips/mips1@ld-forward.d: Likewise.
  922. * gas/mips/mips1@ld.d: Likewise.
  923. * gas/mips/mips1@s_d.d: Likewise.
  924. * gas/mips/s_d-n32.d: Likewise.
  925. * gas/mips/s_d-n64.d: Likewise.
  926. * gas/mips/s_d.d: Likewise.
  927. * gas/mips/sd-n32.d: Likewise.
  928. * gas/mips/sd-n64.d: Likewise.
  929. * gas/mips/sd.d: Likewise.
  930. * gas/mmix/bz-c.d: Likewise.
  931. * gas/mmix/geta-c.d: Likewise.
  932. * gas/mmix/jump-c.d: Likewise.
  933. * gas/mmix/pushj-c.d: Likewise.
  934. * gas/mmix/pushj-cs.d: Likewise.
  935. * gas/mmix/reloc16-n.d: Likewise.
  936. * gas/mmix/reloc16-r.d: Likewise.
  937. * gas/mmix/reloc16.d: Likewise.
  938. * gas/mmix/reloc8-r.d: Likewise.
  939. * gas/mmix/reloc8.d: Likewise.
  940. * gas/mmix/relocxrn.d: Likewise.
  941. * gas/sh/sh64/case-1.d: Likewise.
  942. * gas/sh/sh64/mix-1.d: Likewise.
  943. * gas/sh/sh64/pt32-1.d: Likewise.
  944. * gas/sh/sh64/pt64-1.d: Likewise.
  945. * gas/sh/sh64/pt64-32-2.d: Likewise.
  946. * gas/sh/sh64/rel32-2.d: Likewise.
  947. * gas/sh/sh64/rel32-4.d: Likewise.
  948. * gas/sh/sh64/rel64-2.d: Likewise.
  949. * gas/sh/sh64/rel64-4.d: Likewise.
  950. * gas/tic6x/data-reloc.d: Likewise.
  951. * gas/tic6x/pcr-relocs.d: Likewise.
  952. * gas/xstormy16/allinsn.d: Likewise.
  953. * gas/xstormy16/reloc-1.d: Likewise.
  954. * gas/xstormy16/reloc-2.d: Likewise.
  955. 2012-05-17 Alan Modra <amodra@gmail.com>
  956. * gas/elf/dwarf2-1.d: Update.
  957. * gas/elf/dwarf2-2.d: Update.
  958. * gas/i386/dw2-compress-1.d: Update.
  959. 2012-05-17 Alan Modra <amodra@gmail.com>
  960. * gas/ppc/vle.d: Pass -a32 to assembler.
  961. * gas/ppc/vle-reloc.d: Likewise.
  962. * gas/ppc/vle-simple-1.d: Likewise, also match wider addresses.
  963. * gas/ppc/vle-simple-2.d: Likewise.
  964. * gas/ppc/vle-simple-3.d: Likewise.
  965. * gas/ppc/vle-simple-4.d: Likewise.
  966. * gas/ppc/vle-simple-5.d: Likewise.
  967. * gas/ppc/vle-simple-6.d: Likewise.
  968. 2012-05-16 Meador Inge <meadori@codesourcery.com>
  969. * gas/arm/stm-ldm.d: STMFD/LDMIA sp!, {reg} don't disassemble to
  970. PUSH/POP {reg} any longer. Some new test cases have been added as well.
  971. * gas/arm/stm-ldm.s: Likewise.
  972. 2012-05-15 James Murray <jsm@jsm-net.demon.co.uk>
  973. * gas/m68hc11/insns9s12x.s: New
  974. * gas/m68hc11/insns9s12x.d: New
  975. * gas/m68hc11/hexprefix.s: New
  976. * gas/m68hc11/hexprefix.d: New
  977. * gas/m68hc11/9s12x-exg-sex-tfr.s: New
  978. * gas/m68hc11/9s12x-exg-sex-tfr.d: New
  979. * gas/m68hc11/insns9s12xg.s: New
  980. * gas/m68hc11/insns9s12xg.d: New
  981. * gas/m68hc11/9s12x-mov.s: New
  982. * gas/m68hc11/9s12x-mov.d: New
  983. * gas/m68hc11/m68hc11.exp: Updated
  984. * gas/m68hc11/*.d: Brought in line with changed objdump output.
  985. * gas/all/gas.exp: XFAIL all hc11/12 targets for redef2,3.
  986. * gas/elf/elf.exp: XFAIL all hc11/12 targets for redef.
  987. 2012-05-14 Catherine Moore <clm@codesourcery.com>
  988. Maciej W. Rozycki <macro@codesourcery.com>
  989. Rhonda Wittels <rhonda@codesourcery.com>
  990. * gas/ppc/ppc.exp: Run new tests.
  991. * gas/ppc/vle-reloc.d: New test.
  992. * gas/ppc/vle-reloc.s: New test.
  993. * gas/ppc/vle-simple-1.d: New test.
  994. * gas/ppc/vle-simple-1.s: New test.
  995. * gas/ppc/vle-simple-2.d: New test.
  996. * gas/ppc/vle-simple-2.s: New test.
  997. * gas/ppc/vle-simple-3.d: New test.
  998. * gas/ppc/vle-simple-3.s: New test.
  999. * gas/ppc/vle-simple-4.d: New test.
  1000. * gas/ppc/vle-simple-4.s: New test.
  1001. * gas/ppc/vle-simple-5.d: New test.
  1002. * gas/ppc/vle-simple-5.s: New test.
  1003. * gas/ppc/vle-simple-6.d: New test.
  1004. * gas/ppc/vle-simple-6.s: New test.
  1005. * gas/ppc/vle.d: New test.
  1006. * gas/ppc/vle.s: New test.
  1007. 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
  1008. * gas/cris/rd-pic-1.d: Expect addend as signed.
  1009. * gas/cris/rd-tls-1.d: Likewise.
  1010. * gas/cris/rd-tls-2.d: Likewise.
  1011. 2012-05-13 H.J. Lu <hongjiu.lu@intel.com>
  1012. * gas/all/fwdexp.d: Expect addend as signed.
  1013. * gas/alpha/elf-reloc-1.d: Likewise.
  1014. * gas/i386/mixed-mode-reloc64.d: Likewise.
  1015. * gas/i386/reloc64.d: Likewise.
  1016. * gas/i386/ilp32/mixed-mode-reloc64.d: Expect addend as signed.
  1017. * gas/i386/ilp32/reloc64.d: Likewise.
  1018. * gas/ia64/pcrel.d: Likewise.
  1019. * gas/mips/branch-misc-2-64.d: Likewise.
  1020. * gas/mips/branch-misc-2pic-64.d: Likewise.
  1021. * gas/mips/branch-misc-4-64.d: Likewise.
  1022. * gas/mips/ldstla-n64-sym32.d: Likewise.
  1023. * gas/mips/micromips@branch-misc-2-64.d: Likewise.
  1024. * gas/mips/micromips@branch-misc-2pic-64.d: Likewise.
  1025. * gas/mips/micromips@branch-misc-4-64.d: Likewise.
  1026. * gas/mips/mips16-hilo-n32.d: Likewise.
  1027. * gas/ppc/astest.d: Likewise.
  1028. * gas/ppc/astest2.d: Likewise.
  1029. * gas/ppc/astest2_64.d: Likewise.
  1030. * gas/ppc/astest64.d: Likewise.
  1031. * gas/ppc/test1elf32.d: Likewise.
  1032. * gas/ppc/test1elf64.d: Likewise.
  1033. * gas/sparc/reloc64.d: Likewise.
  1034. 2012-05-12 H.J. Lu <hongjiu.lu@intel.com>
  1035. * gas/mips/elf-rel10.d: Updated.
  1036. * gas/mips/elf-rel22.d: Likewise.
  1037. * gas/mmix/comment-1.d: Likewise.
  1038. 2012-05-12 H.J. Lu <hongjiu.lu@intel.com>
  1039. * gas/i386/ilp32/ilp32.exp: Don't run reloc64-inval.
  1040. * gas/i386/ilp32/reloc64.s: Add test for -4294967295 addend.
  1041. * gas/i386/ilp32/reloc64.d: Updated.
  1042. * gas/i386/ilp32/reloc64-inval.l: Removed.
  1043. * gas/i386/ilp32/reloc64-inval.s: Likewise.
  1044. 2012-05-09 H.J. Lu <hongjiu.lu@intel.com>
  1045. * gas/i386/ilp32/ilp32.exp: Run reloc64-inval.
  1046. * gas/i386/ilp32/reloc64.s: Add tests for ".quad".
  1047. * gas/i386/ilp32/reloc64.d: Updated.
  1048. * gas/i386/ilp32/reloc64-inval.l: New file.
  1049. * gas/i386/ilp32/reloc64-inval.s: Likewise.
  1050. 2012-05-08 Alan Modra <amodra@gmail.com>
  1051. * lib/gas-defs.exp (run_dump_test): Don't set LC_ALL here.
  1052. 2012-05-06 Arnold Metselaar <arnold_m@operamail.com>
  1053. * gas/z80/jr-forwf.s: New file, adapted from z8k version.
  1054. * gas/z80/jr-backf.s: Likewise.
  1055. * gas/z80/djnz-backf.s: Likewise.
  1056. * gas/z80/ill_op: New file, with illegal operand.
  1057. * gas/z80/z80.exp: Run new tests.
  1058. 2012-05-03 Sean Keys <skeys@ipdatasys.com>
  1059. * gas/all/gas.exp: Added xgate tex entry.
  1060. * gas/xgate/abi-xgate-16-32.d: Simple ABI flag test.
  1061. * gas/xgate/abi-xgate-16-64.d: Ditto
  1062. * gas/xgate/abi-xgate-32-32.d: Ditto
  1063. * gas/xgate/abi-xgate-32-64.d: Ditto
  1064. * gas/xgate/abi.s: Source file for ABI tests.
  1065. * gas/xgate/all_insns.d: Dump file for all instructions test.
  1066. * gas/xgate/all_insns.s: Source file for all instructions test.
  1067. * gas/xgate/insns-dwarf2.d: Dump file for dwarf2 test.
  1068. * gas/xgate/insns.d: Dump file for instructions test.
  1069. * gas/xgate/insns.s: Source file for instructions test.
  1070. * gas/xgate/xgate.exp: XGATE tests file.
  1071. 2012-04-27 David S. Miller <davem@davemloft.net>
  1072. * gas/sparc/sparc.exp: Run cfr test.
  1073. * gas/sparc/cfr.s: New testcase.
  1074. * gas/sparc/cfr.d: Likewise.
  1075. * gas/sparc/sparc.exp: Run pause test.
  1076. * gas/sparc/pause.s: New testcase.
  1077. * gas/sparc/pause.d: Likewise.
  1078. * gas/sparc/cbcond.s: New file.
  1079. * gas/sparc/cbcond.d: New file.
  1080. * gas/sparc/sparc.exp: Run cbcond test.
  1081. * gas/sparc/crypto.s: New file.
  1082. * gas/sparc/crypto.d: New file.
  1083. * gas/sparc/sparc.exp: Run crypto test.
  1084. 2012-04-12 David S. Miller <davem@davemloft.net>
  1085. * gas/sparc/reloc64.s: Add abs34 code model tests.
  1086. * gas/sparc/reloc64.d: Update.
  1087. 2012-04-12 Roland McGrath <mcgrathr@google.com>
  1088. * gas/elf/elf.exp (run_elf_list_test): Treat arm-*-nacl* targets
  1089. as -armeabi.
  1090. * gas/arm/any-idiv.d: Match *-*-nacl* targets too.
  1091. * gas/arm/arch4t.d: Likewise.
  1092. * gas/arm/arch4t-eabi.d: Likewise.
  1093. * gas/arm/attr-any-armv4t.d: Likewise.
  1094. * gas/arm/attr-any-thumbv6.d: Likewise.
  1095. * gas/arm/attr-cpu-directive.d: Likewise.
  1096. * gas/arm/attr-default.d: Likewise.
  1097. * gas/arm/attr-march-all.d: Likewise.
  1098. * gas/arm/attr-march-armv1.d: Likewise.
  1099. * gas/arm/attr-march-armv2a.d: Likewise.
  1100. * gas/arm/attr-march-armv2.d: Likewise.
  1101. * gas/arm/attr-march-armv2s.d: Likewise.
  1102. * gas/arm/attr-march-armv3.d: Likewise.
  1103. * gas/arm/attr-march-armv3m.d: Likewise.
  1104. * gas/arm/attr-march-armv4.d: Likewise.
  1105. * gas/arm/attr-march-armv4t.d: Likewise.
  1106. * gas/arm/attr-march-armv4txm.d: Likewise.
  1107. * gas/arm/attr-march-armv4xm.d: Likewise.
  1108. * gas/arm/attr-march-armv5.d: Likewise.
  1109. * gas/arm/attr-march-armv5t.d: Likewise.
  1110. * gas/arm/attr-march-armv5te.d: Likewise.
  1111. * gas/arm/attr-march-armv5tej.d: Likewise.
  1112. * gas/arm/attr-march-armv5texp.d: Likewise.
  1113. * gas/arm/attr-march-armv5txm.d: Likewise.
  1114. * gas/arm/attr-march-armv6.d: Likewise.
  1115. * gas/arm/attr-march-armv6j.d: Likewise.
  1116. * gas/arm/attr-march-armv6k.d: Likewise.
  1117. * gas/arm/attr-march-armv6k+sec.d: Likewise.
  1118. * gas/arm/attr-march-armv6kt2.d: Likewise.
  1119. * gas/arm/attr-march-armv6-m.d: Likewise.
  1120. * gas/arm/attr-march-armv6-m+os.d: Likewise.
  1121. * gas/arm/attr-march-armv6s-m.d: Likewise.
  1122. * gas/arm/attr-march-armv6t2.d: Likewise.
  1123. * gas/arm/attr-march-armv6z.d: Likewise.
  1124. * gas/arm/attr-march-armv6zk.d: Likewise.
  1125. * gas/arm/attr-march-armv6zkt2.d: Likewise.
  1126. * gas/arm/attr-march-armv6zt2.d: Likewise.
  1127. * gas/arm/attr-march-armv7-a.d: Likewise.
  1128. * gas/arm/attr-march-armv7a.d: Likewise.
  1129. * gas/arm/attr-march-armv7-a+idiv.d: Likewise.
  1130. * gas/arm/attr-march-armv7-a+mp.d: Likewise.
  1131. * gas/arm/attr-march-armv7-a+sec.d: Likewise.
  1132. * gas/arm/attr-march-armv7-a+sec+virt.d: Likewise.
  1133. * gas/arm/attr-march-armv7-a+virt.d: Likewise.
  1134. * gas/arm/attr-march-armv7.d: Likewise.
  1135. * gas/arm/attr-march-armv7em.d: Likewise.
  1136. * gas/arm/attr-march-armv7-m.d: Likewise.
  1137. * gas/arm/attr-march-armv7m.d: Likewise.
  1138. * gas/arm/attr-march-armv7-r.d: Likewise.
  1139. * gas/arm/attr-march-armv7r.d: Likewise.
  1140. * gas/arm/attr-march-armv7-r+mp.d: Likewise.
  1141. * gas/arm/attr-march-iwmmxt2.d: Likewise.
  1142. * gas/arm/attr-march-iwmmxt.d: Likewise.
  1143. * gas/arm/attr-march-xscale.d: Likewise.
  1144. * gas/arm/attr-mcpu.d: Likewise.
  1145. * gas/arm/attr-mfpu-arm1020e.d: Likewise.
  1146. * gas/arm/attr-mfpu-arm1020t.d: Likewise.
  1147. * gas/arm/attr-mfpu-arm1136jf-s.d: Likewise.
  1148. * gas/arm/attr-mfpu-arm1136jfs.d: Likewise.
  1149. * gas/arm/attr-mfpu-arm7500fe.d: Likewise.
  1150. * gas/arm/attr-mfpu-fpa10.d: Likewise.
  1151. * gas/arm/attr-mfpu-fpa11.d: Likewise.
  1152. * gas/arm/attr-mfpu-fpa.d: Likewise.
  1153. * gas/arm/attr-mfpu-fpe2.d: Likewise.
  1154. * gas/arm/attr-mfpu-fpe3.d: Likewise.
  1155. * gas/arm/attr-mfpu-fpe.d: Likewise.
  1156. * gas/arm/attr-mfpu-maverick.d: Likewise.
  1157. * gas/arm/attr-mfpu-neon.d: Likewise.
  1158. * gas/arm/attr-mfpu-neon-fp16.d: Likewise.
  1159. * gas/arm/attr-mfpu-softfpa.d: Likewise.
  1160. * gas/arm/attr-mfpu-softvfp.d: Likewise.
  1161. * gas/arm/attr-mfpu-softvfp+vfp.d: Likewise.
  1162. * gas/arm/attr-mfpu-vfp10.d: Likewise.
  1163. * gas/arm/attr-mfpu-vfp10-r0.d: Likewise.
  1164. * gas/arm/attr-mfpu-vfp3.d: Likewise.
  1165. * gas/arm/attr-mfpu-vfp9.d: Likewise.
  1166. * gas/arm/attr-mfpu-vfp.d: Likewise.
  1167. * gas/arm/attr-mfpu-vfpv2.d: Likewise.
  1168. * gas/arm/attr-mfpu-vfpv3-d16.d: Likewise.
  1169. * gas/arm/attr-mfpu-vfpv3.d: Likewise.
  1170. * gas/arm/attr-mfpu-vfpv4-d16.d: Likewise.
  1171. * gas/arm/attr-mfpu-vfpv4.d: Likewise.
  1172. * gas/arm/attr-mfpu-vfpxd.d: Likewise.
  1173. * gas/arm/attr-names.d: Likewise.
  1174. * gas/arm/attr-order.d: Likewise.
  1175. * gas/arm/attr-override-cpu-directive.d: Likewise.
  1176. * gas/arm/attr-override-mcpu.d: Likewise.
  1177. * gas/arm/got_prel.d: Likewise.
  1178. * gas/arm/mapdir.d: Likewise.
  1179. * gas/arm/mapmisc.d: Likewise.
  1180. * gas/arm/mapsecs.d: Likewise.
  1181. * gas/arm/mapshort-eabi.d: Likewise.
  1182. * gas/arm/mapshort-elf.d: Likewise.
  1183. * gas/arm/mov-highregs-any.d: Likewise.
  1184. * gas/arm/mov-lowregs-any.d: Likewise.
  1185. * gas/arm/pr12198-1.d: Likewise.
  1186. * gas/arm/pr12198-2.d: Likewise.
  1187. * gas/arm/thumb.d: Likewise.
  1188. * gas/arm/thumb-eabi.d: Likewise.
  1189. * gas/arm/thumbrel.d: Likewise.
  1190. 2012-04-12 Jie Zhang <jie@codesourcery.com>
  1191. Meador Inge <meadori@codesourcery.com>
  1192. * gas/arm/push-pop.d: New testcase.
  1193. * gas/arm/push-pop.s: Ditto.
  1194. * gas/arm/stm-ldm.d: Ditto.
  1195. * gas/arm/stm-ldm.s: Ditto.
  1196. 2012-04-07 David S. Miller <davem@davemloft.net>
  1197. * gas/all/gas.exp: Sparc can handle BFD_RELOC_8 for constants.
  1198. 2012-04-03 Roland McGrath <mcgrathr@google.com>
  1199. * gas/i386/k1om.d: Add not-target match for *-*-nacl*.
  1200. * gas/i386/l1om.d: Likewise.
  1201. 2012-04-02 DJ Delorie <dj@redhat.com>
  1202. * gas/rx/mov.d: Update patterns for fixed MOV.W encoding.
  1203. 2012-03-20 Nick Clifton <nickc@redhat.com>
  1204. * gas/arm/vfp1xD.s: Add tests of the VMSR ad VMRS instructions in
  1205. priviledged modes.
  1206. * gas/arm/vfp1xD.d: Update expected output.
  1207. 2012-03-16 Matthew Gretton-Dann <matther.gretton-dann@arm.com>
  1208. * gas/testsuite/gas/arm/any-idiv.d: New testcase.
  1209. * gas/testsuite/gas/arm/any-idiv.s: Likewise.
  1210. * gas/arm/attr-any-armv4t.d: Update expected output.
  1211. * gas/arm/attr-any-thumbv6.d: Likewise.
  1212. * gas/arm/attr-cpu-directive.d: Likewise.
  1213. * gas/arm/attr-default.d: Likewise.
  1214. * gas/arm/attr-march-armv1.d: Likewise.
  1215. * gas/arm/attr-march-armv2.d: Likewise.
  1216. * gas/arm/attr-march-armv2a.d: Likewise.
  1217. * gas/arm/attr-march-armv2s.d: Likewise.
  1218. * gas/arm/attr-march-armv3.d: Likewise.
  1219. * gas/arm/attr-march-armv3m.d: Likewise.
  1220. * gas/arm/attr-march-armv4.d: Likewise.
  1221. * gas/arm/attr-march-armv4t.d: Likewise.
  1222. * gas/arm/attr-march-armv4txm.d: Likewise.
  1223. * gas/arm/attr-march-armv4xm.d: Likewise.
  1224. * gas/arm/attr-march-armv5.d: Likewise.
  1225. * gas/arm/attr-march-armv5t.d: Likewise.
  1226. * gas/arm/attr-march-armv5te.d: Likewise.
  1227. * gas/arm/attr-march-armv5tej.d: Likewise.
  1228. * gas/arm/attr-march-armv5texp.d: Likewise.
  1229. * gas/arm/attr-march-armv5txm.d: Likewise.
  1230. * gas/arm/attr-march-armv6-m+os.d: Likewise.
  1231. * gas/arm/attr-march-armv6-m.d: Likewise.
  1232. * gas/arm/attr-march-armv6.d: Likewise.
  1233. * gas/arm/attr-march-armv6j.d: Likewise.
  1234. * gas/arm/attr-march-armv6k+sec.d: Likewise.
  1235. * gas/arm/attr-march-armv6k.d: Likewise.
  1236. * gas/arm/attr-march-armv6kt2.d: Likewise.
  1237. * gas/arm/attr-march-armv6s-m.d: Likewise.
  1238. * gas/arm/attr-march-armv6t2.d: Likewise.
  1239. * gas/arm/attr-march-armv6z.d: Likewise.
  1240. * gas/arm/attr-march-armv6zk.d: Likewise.
  1241. * gas/arm/attr-march-armv6zkt2.d: Likewise.
  1242. * gas/arm/attr-march-armv6zt2.d: Likewise.
  1243. * gas/arm/attr-march-armv7-a+mp.d: Likewise.
  1244. * gas/arm/attr-march-armv7-a+sec.d: Likewise.
  1245. * gas/arm/attr-march-armv7-a.d: Likewise.
  1246. * gas/arm/attr-march-armv7.d: Likewise.
  1247. * gas/arm/attr-march-armv7a.d: Likewise.
  1248. * gas/arm/attr-march-iwmmxt.d: Likewise.
  1249. * gas/arm/attr-march-iwmmxt2.d: Likewise.
  1250. * gas/arm/attr-march-xscale.d: Likewise.
  1251. * gas/arm/attr-mcpu.d: Likewise.
  1252. * gas/arm/attr-mfpu-arm1020e.d: Likewise.
  1253. * gas/arm/attr-mfpu-arm1020t.d: Likewise.
  1254. * gas/arm/attr-mfpu-arm1136jf-s.d: Likewise.
  1255. * gas/arm/attr-mfpu-arm1136jfs.d: Likewise.
  1256. * gas/arm/attr-mfpu-arm7500fe.d: Likewise.
  1257. * gas/arm/attr-mfpu-fpa.d: Likewise.
  1258. * gas/arm/attr-mfpu-fpa10.d: Likewise.
  1259. * gas/arm/attr-mfpu-fpa11.d: Likewise.
  1260. * gas/arm/attr-mfpu-fpe.d: Likewise.
  1261. * gas/arm/attr-mfpu-fpe2.d: Likewise.
  1262. * gas/arm/attr-mfpu-fpe3.d: Likewise.
  1263. * gas/arm/attr-mfpu-maverick.d: Likewise.
  1264. * gas/arm/attr-mfpu-neon-fp16.d: Likewise.
  1265. * gas/arm/attr-mfpu-neon.d: Likewise.
  1266. * gas/arm/attr-mfpu-softfpa.d: Likewise.
  1267. * gas/arm/attr-mfpu-softvfp+vfp.d: Likewise.
  1268. * gas/arm/attr-mfpu-softvfp.d: Likewise.
  1269. * gas/arm/attr-mfpu-vfp.d: Likewise.
  1270. * gas/arm/attr-mfpu-vfp10-r0.d: Likewise.
  1271. * gas/arm/attr-mfpu-vfp10.d: Likewise.
  1272. * gas/arm/attr-mfpu-vfp3.d: Likewise.
  1273. * gas/arm/attr-mfpu-vfp9.d: Likewise.
  1274. * gas/arm/attr-mfpu-vfpv2.d: Likewise.
  1275. * gas/arm/attr-mfpu-vfpv3-d16.d: Likewise.
  1276. * gas/arm/attr-mfpu-vfpv3.d: Likewise.
  1277. * gas/arm/attr-mfpu-vfpv4-d16.d: Likewise.
  1278. * gas/arm/attr-mfpu-vfpv4.d: Likewise.
  1279. * gas/arm/attr-mfpu-vfpxd.d: Likewise.
  1280. * gas/arm/attr-order.d: Likewise.
  1281. * gas/arm/attr-override-cpu-directive.d: Likewise.
  1282. * gas/arm/attr-override-mcpu.d: Likewise.
  1283. * gas/arm/eabi_attr_1.d: Likewise.
  1284. * gas/arm/mov-highregs-any.d: Likewise.
  1285. * gas/arm/mov-lowregs-any.d: Likewise.
  1286. * gas/arm/pr12198-1.d: Likewise.
  1287. * gas/arm/pr12198-2.d: Likewise.
  1288. 2012-03-15 Alan Modra <amodra@gmail.com>
  1289. * gas/i386/bundle-lock.d: Ignore trailing nops.
  1290. * gas/i386/bundle.d: Likewise.
  1291. * gas/i386/x86-64-bundle.d: Likewise.
  1292. 2012-03-13 Roland McGrath <mcgrathr@google.com>
  1293. * gas/i386/bundle-bad.s: New file.
  1294. * gas/i386/bundle-bad.d: New file.
  1295. * gas/i386/bundle-bad.l: New file.
  1296. * gas/i386/i386.exp: Run it.
  1297. * gas/arm/bundle.s: New file.
  1298. * gas/arm/bundle.d: New file.
  1299. * gas/arm/bundle-lock.s: New file.
  1300. * gas/arm/bundle-lock.d: New file.
  1301. * gas/i386/bundle.s: New file.
  1302. * gas/i386/bundle.d: New file.
  1303. * gas/i386/x86-64-bundle.s: New file.
  1304. * gas/i386/x86-64-bundle.d: New file.
  1305. * gas/i386/bundle-lock.s: New file.
  1306. * gas/i386/bundle-lock.d: New file.
  1307. * gas/i386/i386.exp: Run them.
  1308. 2012-03-10 Edmar Wienskoski <edmar@freescale.com>
  1309. * gas/ppc/e500mc64_nop.s: New test case for e500mc family
  1310. termination nops.
  1311. * gas/ppc/e500mc64_nop.d: Likewise.
  1312. * gas/ppc/e5500_nop.s: Likewise.
  1313. * gas/ppc/e5500_nop.d: Likewise.
  1314. * gas/ppc/e6500_nop.s: Likewise.
  1315. * gas/ppc/e6500_nop.d: Likewise.
  1316. * gas/ppc/e6500.s: New.
  1317. * gas/ppc/e6500.d: Likewise.
  1318. * gas/ppc/ppc.exp: Run e6500, e500mc64_nop, e5500_nop, and e6500_nop.
  1319. 2012-03-08 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
  1320. * gas/s390/esa-g5.d: Move length field to the second operand.
  1321. * gas/s390/esa-g5.s: Likewise.
  1322. 2012-02-14 Alan Modra <amodra@gmail.com>
  1323. * gas/elf/bad-group.s: Add section attributes.
  1324. * gas/elf/elf.exp (groupautoa, groupautob): Don't run for hppa64-hpux.
  1325. (ifunc-1, type): Don't run for hpux.
  1326. * gas/elf/type-noifunc.e: Accept ANSI_COM.
  1327. * gas/elf/section7.s: Always have whitespace before directives.
  1328. * gas/elf/warn-2.s: Likewise.
  1329. * gas/i386/ifunc-3.s: Move .size directive.
  1330. 2012-02-13 Alan Modra <amodra@gmail.com>
  1331. * gas/all/gas.exp (redef2): xfail m6811 and m6812.
  1332. * gas/elf/elf.exp: Use is_elf_format.
  1333. * gas/symver/symver.exp: Likewise.
  1334. * gas/m68hc11/m68hc11.exp: Simplify target test.
  1335. Add -m68hc11 to error tests that pass for hc12.
  1336. 2012-02-11 Kai Tietz <ktietz@redhat.com>
  1337. * gas/i386/disp32.d: Adjust label pattern.
  1338. 2012-02-08 Kai Tietz <ktietz@redhat.com>
  1339. * gas/i386/x86-64-disp32.d: Fix lable-pattern.
  1340. 2012-02-08 H.J. Lu <hongjiu.lu@intel.com>
  1341. * gas/i386/hle-intel.d: New.
  1342. * gas/i386/hle.d: Likewise.
  1343. * gas/i386/hle.s: Likewise.
  1344. * gas/i386/hlebad.l: Likewise.
  1345. * gas/i386/hlebad.s: Likewise.
  1346. * gas/i386/rtm-intel.d: Likewise.
  1347. * gas/i386/rtm.d: Likewise.
  1348. * gas/i386/rtm.s: Likewise.
  1349. * gas/i386/x86-64-hle-intel.d: Likewise.
  1350. * gas/i386/x86-64-hle.d: Likewise.
  1351. * gas/i386/x86-64-hle.s: Likewise.
  1352. * gas/i386/x86-64-hlebad.l: Likewise.
  1353. * gas/i386/x86-64-hlebad.s: Likewise.
  1354. * gas/i386/x86-64-rtm-intel.d: Likewise.
  1355. * gas/i386/x86-64-rtm.d: Likewise.
  1356. * gas/i386/x86-64-rtm.s: Likewise.
  1357. * gas/i386/i386.exp: Run hle, hle-intel, hlebad x86-64-hle, rtm,
  1358. rtm-intel, x86-64-hle-intel, x86-64-hlebad, x86-64-rtm and
  1359. x86-64-rtm-intel.
  1360. 2012-01-20 H.J. Lu <hongjiu.lu@intel.com>
  1361. * gas/i386/disp32.s: Add tests for .d8 suffix.
  1362. * gas/i386/x86-64-disp32.s: Likewise.
  1363. * gas/i386/disp32.d: Updated.
  1364. * gas/i386/x86-64-disp32.d: Likewise.
  1365. 2012-01-17 Andreas Schwab <schwab@linux-m68k.org>
  1366. * gas/m68k/pmove.s, gas/m68k/pmove.d: New test.
  1367. * gas/m68k/all.exp: Run it.
  1368. 2012-01-13 H.J. Lu <hongjiu.lu@intel.com>
  1369. * gas/i386/i386.exp: Run vmfunc and x86-64-vmfunc.
  1370. * gas/i386/vmfunc.d: New.
  1371. * gas/i386/vmfunc.s: Likewise.
  1372. * gas/i386/x86-64-vmfunc.d: Likewise.
  1373. 2012-01-13 Iain Sandoe <idsandoe@googlemail.com>
  1374. * gas/all/redef2.d: Skip for Darwin.
  1375. * gas/all/redef3.d: Likewise.
  1376. * gas/all/weakref1.d: Likewise.
  1377. * gas/macros/irp.d: Likewise.
  1378. * gas/macros/repeat.d: Likewise.
  1379. * gas/macros/rept.d: Likewise.
  1380. * gas/macros/test2.d: Likewise.
  1381. * gas/macros/vararg.d: Likewise.
  1382. * gas/mach-o/macro-irp.d: New.
  1383. * gas/mach-o/macro-repeat.d: New.
  1384. * gas/mach-o/macro-rept.d: New.
  1385. * gas/mach-o/macro-test2.d: New.
  1386. * gas/mach-o/macro-vararg.d: New.
  1387. * gas/mach-o/redef2.d: New.
  1388. * gas/mach-o/redef3.d: New.
  1389. 2012-01-13 Iain Sandoe <idsandoe@googlemail.com>
  1390. * gas/mach-o/dysymtab-3.d: New.
  1391. * gas/mach-o/symbols-7.s: New.
  1392. 2012-01-13 Iain Sandoe <idsandoe@googlemail.com>
  1393. * gas/mach-o/dysymtab-2.d: Update to include the set VMA.
  1394. * gas/mach-o/symbols-1-64.d: Likewise.
  1395. * gas/mach-o/symbols-1.d: Likewise.
  1396. * gas/mach-o/symbols-6.d: Likewise.
  1397. * gas/mach-o/zerofill-1.d: Likewise.
  1398. * gas/mach-o/zerofill-2.d: Likewise.
  1399. 2012-01-12 Iain Sandoe <idsandoe@googlemail.com>
  1400. * gas/mach-o/dysymtab-2.d: New.
  1401. * gas/mach-o/err-syms-4.s: New.
  1402. * gas/mach-o/err-syms-5.s: New.
  1403. * gas/mach-o/err-syms-6.s: New.
  1404. * gas/mach-o/symbols-6-64.d: New.
  1405. * gas/mach-o/symbols-6-64.s: New.
  1406. * gas/mach-o/symbols-6.d: New.
  1407. * gas/mach-o/symbols-6.s: New.
  1408. 2012-01-09 Iain Sandoe <idsandoe@googlemail.com>
  1409. * gas/mach-o/err-syms-1.s: New.
  1410. * gas/mach-o/err-syms-2.s: New.
  1411. * gas/mach-o/err-syms-3.s: New.
  1412. * gas/mach-o/symbols-2.d: New.
  1413. * gas/mach-o/symbols-2.s: New.
  1414. * gas/mach-o/symbols-3.s: New.
  1415. * gas/mach-o/symbols-4.s: New.
  1416. * gas/mach-o/symbols-5.d: New.
  1417. * gas/mach-o/symbols-5.s: New.
  1418. 2012-01-08 Richard Sandiford <rdsandiford@googlemail.com>
  1419. * gas/mips/tls-relw.s, gas/mips/tls-relw.d: New test.
  1420. * gas/mips/mips.exp: Run it.
  1421. 2012-01-08 Richard Sandiford <rdsandiford@googlemail.com>
  1422. * gas/mips/align3.s, gas/mips/align3.d: New testcase.
  1423. * gas/mips/mips.exp: Run it.
  1424. 2012-01-04 Iain Sandoe <idsandoe@googlemail.com>
  1425. * gas/mach-o/zerofill-2.d: New.
  1426. 2012-01-04 Iain Sandoe <idsandoe@googlemail.com>
  1427. * gas/mach-o/zerofill-1.d: New.
  1428. * gas/mach-o/zerofill-1.s: New.
  1429. 2012-01-03 Iain Sandoe <idsandoe@googlemail.com>
  1430. * gas/mach-o/dysymtab-1-64.d: New.
  1431. * gas/mach-o/dysymtab-1.d: New.
  1432. * gas/mach-o/symbols-1-64.d: New.
  1433. * gas/mach-o/symbols-1.d: New.
  1434. * gas/mach-o/symbols-base-64.s: New.
  1435. * gas/mach-o/symbols-base.s: New.
  1436. For older changes see ChangeLog-2011
  1437. Copyright (C) 2012 Free Software Foundation, Inc.
  1438. Copying and distribution of this file, with or without modification,
  1439. are permitted in any medium without royalty provided the copyright
  1440. notice and this notice are preserved.
  1441. Local Variables:
  1442. mode: change-log
  1443. left-margin: 8
  1444. fill-column: 74
  1445. version-control: never
  1446. End: