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

« back to all changes in this revision

Viewing changes to src/cmd/6c/mul.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:
35
35
 
36
36
struct  Malg
37
37
{
38
 
        char    vals[10];
 
38
        schar   vals[10];
39
39
};
40
40
 
41
41
struct  Mparam
42
42
{
43
43
        uint32  value;
44
 
        char    alg;
 
44
        schar   alg;
45
45
        char    neg;
46
46
        char    shift;
47
47
        char    arg;
48
 
        char    off;
 
48
        schar   off;
49
49
};
50
50
 
51
51
static  Mparam  multab[32];
101
101
{
102
102
        int c, i, j, n, o, q, s;
103
103
        int bc, bi, bn, bo, bq, bs, bt;
104
 
        char *p;
 
104
        schar *p;
105
105
        int32 u;
106
106
        uint32 t;
107
107