~bdrung/qemu-kvm/caps-lock-key-up-event

« back to all changes in this revision

Viewing changes to target-arm/translate.c

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2010-08-10 08:51:54 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100810085154-ok0jzlkr75dplmc7
Tags: 0.12.5+noroms-0ubuntu1
* New upstream release
* Removed patch which is now upstream:
  0001-Fix-missing-symbols-in-.rel-.rela.plt-sections.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
561
561
 
562
562
/* For unknown reasons Arm and Thumb-2 use arbitrarily different encodings.  */
563
563
#define PAS_OP(pfx) \
564
 
    switch (op2) {  \
 
564
    switch (op1) {  \
565
565
    case 0: gen_pas_helper(glue(pfx,add8)); break; \
566
566
    case 1: gen_pas_helper(glue(pfx,add16)); break; \
567
567
    case 2: gen_pas_helper(glue(pfx,addsubx)); break; \
573
573
{
574
574
    TCGv_ptr tmp;
575
575
 
576
 
    switch (op1) {
 
576
    switch (op2) {
577
577
#define gen_pas_helper(name) glue(gen_helper_,name)(a, a, b, tmp)
578
578
    case 0:
579
579
        tmp = tcg_temp_new_ptr();