diff options
author | Eli Friedman <efriedma@codeaurora.org> | 2017-02-24 03:04:11 +0000 |
---|---|---|
committer | Eli Friedman <efriedma@codeaurora.org> | 2017-02-24 03:04:11 +0000 |
commit | 7e0ce82c4a6a2559c0acb67a92bd6e91bfc4240b (patch) | |
tree | a51d486d7fd656434f993b2b9f9abbe4ca7a565e /llvm/utils/update_llc_test_checks.py | |
parent | 701ad3fbf9c95b214fb958f99670e5ff1912c514 (diff) | |
download | bcm5719-llvm-7e0ce82c4a6a2559c0acb67a92bd6e91bfc4240b.tar.gz bcm5719-llvm-7e0ce82c4a6a2559c0acb67a92bd6e91bfc4240b.zip |
Add some testcases for bitfields with illegal widths.
clang will generate IR like this for input using packed bitfields;
very simple semantically, but it's a bit tricky to actually
generate good code.
llvm-svn: 296080
Diffstat (limited to 'llvm/utils/update_llc_test_checks.py')
-rwxr-xr-x | llvm/utils/update_llc_test_checks.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/update_llc_test_checks.py b/llvm/utils/update_llc_test_checks.py index 6d489a4f3b3..0962dae47c6 100755 --- a/llvm/utils/update_llc_test_checks.py +++ b/llvm/utils/update_llc_test_checks.py @@ -121,6 +121,7 @@ def build_function_body_dictionary(raw_tool_output, triple, prefixes, func_dict, 'x86': (scrub_asm_x86, ASM_FUNCTION_X86_RE), 'i386': (scrub_asm_x86, ASM_FUNCTION_X86_RE), 'arm-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE), + 'armeb-eabi': (scrub_asm_arm_eabi, ASM_FUNCTION_ARM_RE), 'powerpc64le': (scrub_asm_powerpc64le, ASM_FUNCTION_PPC_RE), } handlers = None |