Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-09-16 04:51:35 +0400
committerDavid Schleef <ds@schleef.org>2010-09-16 04:51:35 +0400
commit6fe216c6ab84e949e4910c1c09b2f59d6f2c610a (patch)
tree394bd5ba8a24f342697d9d8fea8667cd950ced5c /testsuite/test.orc
parentd7ce7adbd21c84d8a4d233d3e6010bffe2f6efa3 (diff)
c: Fix problems related to 64-bit constants
Diffstat (limited to 'testsuite/test.orc')
-rw-r--r--testsuite/test.orc16
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
+
+