Add examples/intrinsics/generic-32.h implementation.

Roughly 100 tests fail with this; all the tests need to be audited
for assumptions that 16 is the widest width possible…
This commit is contained in:
Matt Pharr
2012-05-25 12:37:59 -07:00
parent e8e9baa417
commit 7a2142075c
2 changed files with 1693 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -76,8 +76,11 @@ if is_generic_target and options.include_file == None:
sys.stderr.write("No generics #include specified; using examples/intrinsics/generic-16.h\n")
options.include_file = "examples/intrinsics/generic-16.h"
elif options.target == "generic-32":
sys.stderr.write("No generics #include specified and no default available for \"generic-32\" target.\n")
sys.exit(1)
sys.stderr.write("No generics #include specified; using examples/intrinsics/generic-32.h\n")
options.include_file = "examples/intrinsics/generic-32.h"
elif options.target == "generic-64":
sys.stderr.write("No generics #include specified; using examples/intrinsics/generic-64.h\n")
options.include_file = "examples/intrinsics/generic-64.h"
if options.compiler_exe == None:
if is_windows: