~fboudra/qemu-linaro/new-upstream-release-1.2.0-2012.09-0ubuntu1

« back to all changes in this revision

Viewing changes to tests/tcg/openrisc/test_add.c

  • Committer: Fathi Boudra
  • Author(s): Fathi Boudra
  • Date: 2012-08-21 06:47:11 UTC
  • mfrom: (0.1.16)
  • Revision ID: fathi.boudra@linaro.org-20120821064711-7yxmubp2v8a44xce
Tags: 1.1.50-2012.08-0ubuntu1
* New upstream release.
  - support emulated systems with more than 2G of memory. (LP: #1030588)
* Drop powerpc-missing-include.patch - merged upstream.
* Update debian/control: 
  - drop perl build dependency.
  - add libfdt-dev build dependency.
* Update debian/qemu-keymaps.install file.
* Update debian/rules:
  - update QEMU_CPU for ARM architecture: armv4l -> armv7l.
  - update conf_audio_drv: default to PulseAudio since PA is the default on
    Ubuntu.
  - enable KVM on ARM architecture.
  - enable flat device tree support (--enable-fdt). (LP: #1030594)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
 
 
3
int main(void)
 
4
{
 
5
    int a, b, d;
 
6
    int result;
 
7
 
 
8
    a = 0x100;
 
9
    b = 0x100;
 
10
    result = 0x200;
 
11
    __asm
 
12
    ("l.add %0, %0, %1\n\t"
 
13
     : "+r"(a)
 
14
     : "r"(b)
 
15
    );
 
16
    if (a != result) {
 
17
        printf("add error\n");
 
18
        return -1;
 
19
    }
 
20
 
 
21
    a = 0xffff;
 
22
    b = 0x1;
 
23
    result = 0x10000;
 
24
    __asm
 
25
    ("l.add %0, %0, %1\n\t"
 
26
     : "+r"(a)
 
27
     : "r"(b)
 
28
    );
 
29
    if (a != result) {
 
30
        printf("add error\n");
 
31
        return -1;
 
32
    }
 
33
 
 
34
    a = 0x7fffffff;
 
35
    b = 0x1;
 
36
    __asm
 
37
    ("l.add %0, %1, %2\n\t"
 
38
     : "=r"(d)
 
39
     : "r"(b), "r"(a)
 
40
    );
 
41
 
 
42
    return 0;
 
43
}