summaryrefslogtreecommitdiff
path: root/volk/tmpl
diff options
context:
space:
mode:
authorJosh Blum2012-04-16 00:41:16 -0700
committerJosh Blum2012-04-19 18:12:55 -0700
commit25a3690954d80819fe59e179e4675c5cdf81a347 (patch)
tree06e8a184e76a7955ba7a4891dedda47515f08170 /volk/tmpl
parent3af0f815ae3442dacdac78acf238b277f472c404 (diff)
downloadgnuradio-25a3690954d80819fe59e179e4675c5cdf81a347.tar.gz
gnuradio-25a3690954d80819fe59e179e4675c5cdf81a347.tar.bz2
gnuradio-25a3690954d80819fe59e179e4675c5cdf81a347.zip
volk: make orc a normal arch with overrule
Diffstat (limited to 'volk/tmpl')
-rw-r--r--volk/tmpl/volk_machine_xxx.tmpl.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/volk/tmpl/volk_machine_xxx.tmpl.c b/volk/tmpl/volk_machine_xxx.tmpl.c
index 023eea502..1f6a77501 100644
--- a/volk/tmpl/volk_machine_xxx.tmpl.c
+++ b/volk/tmpl/volk_machine_xxx.tmpl.c
@@ -58,22 +58,6 @@ $(' | '.join(['(1 << LV_%s)'%a.name.upper() for a in $archs]))#slurp
{$(', '.join(['%s_%s'%($name, a) for a in $tags]))}#slurp
#end def
-#ifdef LV_HAVE_ORC
-struct volk_machine volk_machine_$(this_machine.name) = {
- $make_arch_have_list($this_machine.archs) | (1 << LV_ORC),
- "$this_machine.name",
- $this_machine.alignment,
- #for $kern in $kernels
- #set $taglist, $tagdeps = $kern.get_tags($arch_names + ["orc"])
- "$kern.name",
- $make_tag_str_list($taglist),
- $make_tag_have_list($tagdeps),
- $make_tag_kern_list($kern.name, $taglist),
- $(len($taglist)),
- #end for
-};
-
-#else
struct volk_machine volk_machine_$(this_machine.name) = {
$make_arch_have_list($this_machine.archs),
"$this_machine.name",
@@ -87,5 +71,3 @@ struct volk_machine volk_machine_$(this_machine.name) = {
$(len($taglist)),
#end for
};
-
-#endif