summaryrefslogtreecommitdiff
path: root/volk/gen/volk_arch_defs.py
diff options
context:
space:
mode:
Diffstat (limited to 'volk/gen/volk_arch_defs.py')
-rw-r--r--volk/gen/volk_arch_defs.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/volk/gen/volk_arch_defs.py b/volk/gen/volk_arch_defs.py
index 41154d5a7..3c75e1374 100644
--- a/volk/gen/volk_arch_defs.py
+++ b/volk/gen/volk_arch_defs.py
@@ -18,9 +18,6 @@
archs = list()
arch_dict = dict()
-#TODO enable this when we are ready
-create_unaligned_archs = False
-
class arch_class:
def __init__(self, flags, checks, **kwargs):
for key, cast, failval in (
@@ -49,10 +46,6 @@ def register_arch(**kwargs):
arch = arch_class(**kwargs)
archs.append(arch)
arch_dict[arch.name] = arch
- if arch.alignment > 1 and create_unaligned_archs:
- kwargs['name'] += '_u'
- kwargs['alignment'] = 1
- register_arch(**kwargs)
########################################################################
# register the arches