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

« back to all changes in this revision

Viewing changes to src/cmd/cc/sub.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:
847
847
        c2 = n->left->left->right->vconst;
848
848
        c3 = n->left->right->vconst;
849
849
 
850
 
/*
851
 
        if(debug['h'])
852
 
                print("%.3o %d %d %d #%.ux\n",
853
 
                        (s1<<3)|s2, c1, c2, topbit(c3), c3);
854
 
*/
855
 
 
856
850
        o = n->op;
857
851
        switch((s1<<3)|s2) {
858
852
        case 000:       /* (((e <<u c2) & c3) <<u c1) */
1497
1491
        OPOSTINC,       0,      "POSTINC",
1498
1492
        OPREDEC,        0,      "PREDEC",
1499
1493
        OPREINC,        0,      "PREINC",
 
1494
        OPREFETCH,              0,      "PREFETCH",
1500
1495
        OPROTO,         0,      "PROTO",
1501
1496
        OREGISTER,      0,      "REGISTER",
1502
1497
        ORETURN,        0,      "RETURN",
1520
1515
        OINDEX,         0,      "INDEX",
1521
1516
        OFAS,           0,      "FAS",
1522
1517
        OREGPAIR,       0,      "REGPAIR",
 
1518
        OROTL,          0,      "ROTL",
1523
1519
        OEND,           0,      "END",
1524
1520
        -1,             0,      0,
1525
1521
};