~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/cmd/5c/peep.c

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-08-20 14:06:23 UTC
  • mfrom: (14.1.23 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130820140623-b414jfxi3m0qkmrq
Tags: 2:1.1.2-2ubuntu1
* Merge from Debian unstable (LP: #1211749, #1202027). Remaining changes:
  - 016-armhf-elf-header.patch: Use correct ELF header for armhf binaries.
  - d/control,control.cross: Update Breaks/Replaces for Ubuntu
    versions to ensure smooth upgrades, regenerate control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
824
824
        Adr v;
825
825
 
826
826
        p = r->prog;
827
 
        if(debug['h'] && p->as == AMOVB && p->from.type == D_OREG)      /* byte load */
 
827
        if(p->as == AMOVB && p->from.type == D_OREG)    /* byte load */
828
828
                return 0;
829
829
        v = *a;
830
830
        v.type = D_REG;
1067
1067
        case ABLT:
1068
1068
        case ABGT:
1069
1069
        case ABLE:
 
1070
        case APLD:
1070
1071
                if(s != A) {
1071
1072
                        if(copysub(&p->from, v, s, 1))
1072
1073
                                return 1;