diff options
author | David Schleef <ds@schleef.org> | 2010-09-15 17:51:35 -0700 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2010-09-15 17:51:35 -0700 |
commit | 6fe216c6ab84e949e4910c1c09b2f59d6f2c610a (patch) | |
tree | 394bd5ba8a24f342697d9d8fea8667cd950ced5c /testsuite | |
parent | d7ce7adbd21c84d8a4d233d3e6010bffe2f6efa3 (diff) |
c: Fix problems related to 64-bit constants
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/test.orc | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/testsuite/test.orc b/testsuite/test.orc index 57664f3..01d854d 100644 --- a/testsuite/test.orc +++ b/testsuite/test.orc @@ -2241,7 +2241,7 @@ copyl d1, c1 copyl d1, 2.0 -.init convert_fc32_to_int32_init + .function convert_fc32_to_int32 .source 8 src #one complex float .dest 4 dst #one complex short @@ -2252,3 +2252,17 @@ x2 convfl lscaled, scaled x2 convlw dst, lscaled +.function param64 +.dest 8 d +.param 8 s + +copyq d, s + + +.function const64 +.dest 8 d +.const 8 s 0x0123456789abcdef + +copyq d, s + + |