Skip to content
Snippets Groups Projects
Commit 3d2fd8d4 authored by Daniel Dunbar's avatar Daniel Dunbar
Browse files

utils/ABITest: Tweak default bit-field types to cover some more interesting cases.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114866 91177308-0d34-0410-b5e6-96231b3b80d8
parent 3dbe0b76
No related branches found
No related tags found
No related merge requests found
...@@ -272,7 +272,8 @@ class TypePrinter: ...@@ -272,7 +272,8 @@ class TypePrinter:
code = 'lld' code = 'lld'
elif t.name.endswith('long'): elif t.name.endswith('long'):
code = 'ld' code = 'ld'
elif t.name.split(' ')[-1] in ('_Bool','char','short','int'): elif t.name.split(' ')[-1] in ('_Bool','char','short',
'int','unsigned'):
code = 'd' code = 'd'
elif t.name in ('float','double'): elif t.name in ('float','double'):
code = 'f' code = 'f'
...@@ -456,7 +457,8 @@ def main(): ...@@ -456,7 +457,8 @@ def main():
action="store", type=str, default='v2i16, v1i64, v2i32, v4i16, v8i8, v2f32, v2i64, v4i32, v8i16, v16i8, v2f64, v4f32, v16f32', metavar="N") action="store", type=str, default='v2i16, v1i64, v2i32, v4i16, v8i8, v2f32, v2i64, v4i32, v8i16, v16i8, v2f64, v4f32, v16f32', metavar="N")
group.add_option("", "--bit-fields", dest="bitFields", group.add_option("", "--bit-fields", dest="bitFields",
help="comma separated list 'type:width' bit-field specifiers [default %default]", help="comma separated list 'type:width' bit-field specifiers [default %default]",
action="store", type=str, default="char:0,char:4,unsigned:0,unsigned:4,unsigned:13,unsigned:24") action="store", type=str, default=(
"char:0,char:4,int:0,unsigned:1,int:1,int:4,int:13,int:24"))
group.add_option("", "--max-args", dest="functionMaxArgs", group.add_option("", "--max-args", dest="functionMaxArgs",
help="maximum number of arguments per function [default %default]", help="maximum number of arguments per function [default %default]",
action="store", type=int, default=4, metavar="N") action="store", type=int, default=4, metavar="N")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment