MAINTAINERS | 1 + disas/Makefile.objs | 1 + disas/xtensa.c | 133 + include/disas/bfd.h | 1 + include/hw/xtensa/xtensa-isa.h | 838 ++ target/xtensa/Makefile.objs | 1 + target/xtensa/core-dc232b.c | 4 + target/xtensa/core-dc232b/xtensa-modules.c | 14106 +++++++++++++++++++++++++ target/xtensa/core-dc233c.c | 4 + target/xtensa/core-dc233c/xtensa-modules.c | 15233 +++++++++++++++++++++++++++ target/xtensa/core-fsf.c | 5 + target/xtensa/core-fsf/xtensa-modules.c | 9842 +++++++++++++++++ target/xtensa/cpu.c | 9 + target/xtensa/cpu.h | 31 + target/xtensa/helper.c | 37 + target/xtensa/import_core.sh | 14 + target/xtensa/op_helper.c | 2 +- target/xtensa/translate.c | 5883 +++++++---- target/xtensa/xtensa-isa-internal.h | 231 + target/xtensa/xtensa-isa.c | 1745 +++ target/xtensa/xtensa-isa.h | 1 + tests/tcg/xtensa/test_sr.S | 2 +- 22 files changed, 45951 insertions(+), 2173 deletions(-) create mode 100644 disas/xtensa.c create mode 100644 include/hw/xtensa/xtensa-isa.h create mode 100644 target/xtensa/core-dc232b/xtensa-modules.c create mode 100644 target/xtensa/core-dc233c/xtensa-modules.c create mode 100644 target/xtensa/core-fsf/xtensa-modules.c create mode 100644 target/xtensa/xtensa-isa-internal.h create mode 100644 target/xtensa/xtensa-isa.c create mode 100644 target/xtensa/xtensa-isa.h
Hello, this series adds libisa to the Xtensa target, changes decoder and instruction translators to use it, switches existing xtensa cores to use it, adds support for a number of new instructions and adds disassembler for Xtensa. Libisa is the canonical way of dealing with Xtensa instructions decoding and encoding. Libisa is a configuration-independent library with a stable interface plus generated configuration-specific xtensa-modules.c file with implementations of decoding and encoding functions. Libisa is MIT-licensed and originally distributed xtensa-modules.c files are also MIT-licensed and are available as a part of the xtensa configuration overlay. This transition makes it possible to support variable-encoding instructions of the core ISA, like const16, and will allow to support advanced Xtensa features, like FLIX and TIE. Development branch is available at: git://github.com/OSLL/qemu-xtensa.git xtensa-libisa Max Filippov (16): target/xtensa: pass actual frame size to the entry helper target/xtensa: import libisa source target/xtensa: extract core opcode translators target/xtensa: extract FPU2000 opcode translators target/xtensa: update import_core.sh script for libisa target/xtensa: switch dc232b to libisa target/xtensa: switch dc233c to libisa target/xtensa: switch fsf to libisa target/xtensa: use libisa for instruction decoding target/xtensa: tests: fix memctl SR test target/xtensa: drop DisasContext::litbase target/xtensa: add internal/noop SRs and opcodes target/xtensa: implement salt/saltu target/xtensa: implement GPIO32 target/xtensa: implement const16 target/xtensa: implement disassembler MAINTAINERS | 1 + disas/Makefile.objs | 1 + disas/xtensa.c | 133 + include/disas/bfd.h | 1 + include/hw/xtensa/xtensa-isa.h | 838 ++ target/xtensa/Makefile.objs | 1 + target/xtensa/core-dc232b.c | 4 + target/xtensa/core-dc232b/xtensa-modules.c | 14106 +++++++++++++++++++++++++ target/xtensa/core-dc233c.c | 4 + target/xtensa/core-dc233c/xtensa-modules.c | 15233 +++++++++++++++++++++++++++ target/xtensa/core-fsf.c | 5 + target/xtensa/core-fsf/xtensa-modules.c | 9842 +++++++++++++++++ target/xtensa/cpu.c | 9 + target/xtensa/cpu.h | 31 + target/xtensa/helper.c | 37 + target/xtensa/import_core.sh | 14 + target/xtensa/op_helper.c | 2 +- target/xtensa/translate.c | 5883 +++++++---- target/xtensa/xtensa-isa-internal.h | 231 + target/xtensa/xtensa-isa.c | 1745 +++ target/xtensa/xtensa-isa.h | 1 + tests/tcg/xtensa/test_sr.S | 2 +- 22 files changed, 45951 insertions(+), 2173 deletions(-) create mode 100644 disas/xtensa.c create mode 100644 include/hw/xtensa/xtensa-isa.h create mode 100644 target/xtensa/core-dc232b/xtensa-modules.c create mode 100644 target/xtensa/core-dc233c/xtensa-modules.c create mode 100644 target/xtensa/core-fsf/xtensa-modules.c create mode 100644 target/xtensa/xtensa-isa-internal.h create mode 100644 target/xtensa/xtensa-isa.c create mode 100644 target/xtensa/xtensa-isa.h -- 2.1.4
Hi,
This series seems to have some coding style problems. See output below for
more information:
Subject: [Qemu-devel] [PATCH 00/16] target/xtensa: switch to libisa
Type: series
Message-id: 1509767121-26925-1-git-send-email-jcmvbkbc@gmail.com
=== TEST SCRIPT BEGIN ===
#!/bin/bash
BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0
git config --local diff.renamelimit 0
git config --local diff.renames True
commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..."
if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
failed=1
echo
fi
n=$((n+1))
done
exit $failed
=== TEST SCRIPT END ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
* [new tag] patchew/1509767121-26925-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1509767121-26925-1-git-send-email-jcmvbkbc@gmail.com
Switched to a new branch 'test'
ea5b32e0c1 target/xtensa: implement disassembler
1a87f2b45b target/xtensa: implement const16
6ded886f3d target/xtensa: implement GPIO32
fcb1b0e8d5 target/xtensa: implement salt/saltu
23b7c67e1e target/xtensa: add internal/noop SRs and opcodes
69db212c15 target/xtensa: drop DisasContext::litbase
45e03c8db7 target/xtensa: tests: fix memctl SR test
46e5cfab37 target/xtensa: use libisa for instruction decoding
b5800e5abe target/xtensa: switch fsf to libisa
e650457e23 target/xtensa: switch dc233c to libisa
beca5d8193 target/xtensa: switch dc232b to libisa
9f16b690de target/xtensa: update import_core.sh script for libisa
cda0610740 target/xtensa: extract FPU2000 opcode translators
664244d9d7 target/xtensa: extract core opcode translators
00fd87e81a target/xtensa: import libisa source
a4761b6ecb target/xtensa: pass actual frame size to the entry helper
=== OUTPUT BEGIN ===
Checking PATCH 1/16: target/xtensa: pass actual frame size to the entry helper...
Checking PATCH 2/16: target/xtensa: import libisa source...
WARNING: architecture specific defines should be avoided
#52: FILE: include/hw/xtensa/xtensa-isa.h:30:
+#ifdef __cplusplus
ERROR: spaces required around that '*' (ctx:WxV)
#204: FILE: include/hw/xtensa/xtensa-isa.h:182:
+typedef xtensa_insnbuf_word *xtensa_insnbuf;
^
WARNING: architecture specific defines should be avoided
#857: FILE: include/hw/xtensa/xtensa-isa.h:835:
+#ifdef __cplusplus
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#1166: FILE: target/xtensa/xtensa-isa.c:52:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#1181: FILE: target/xtensa/xtensa-isa.c:67:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#1596: FILE: target/xtensa/xtensa-isa.c:482:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#1606: FILE: target/xtensa/xtensa-isa.c:492:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#1740: FILE: target/xtensa/xtensa-isa.c:626:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#1947: FILE: target/xtensa/xtensa-isa.c:833:
+ return ERRVAL; \
ERROR: do not use assignment in if condition
#2165: FILE: target/xtensa/xtensa-isa.c:1051:
+ if ((*intop->encode)(valp) ||
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2357: FILE: target/xtensa/xtensa-isa.c:1243:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2403: FILE: target/xtensa/xtensa-isa.c:1289:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2432: FILE: target/xtensa/xtensa-isa.c:1318:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2547: FILE: target/xtensa/xtensa-isa.c:1433:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2630: FILE: target/xtensa/xtensa-isa.c:1516:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2720: FILE: target/xtensa/xtensa-isa.c:1606:
+ return ERRVAL; \
ERROR: return of an errno should typically be -ve (return -ERRVAL)
#2810: FILE: target/xtensa/xtensa-isa.c:1696:
+ return ERRVAL; \
total: 15 errors, 2 warnings, 2821 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Checking PATCH 3/16: target/xtensa: extract core opcode translators...
Checking PATCH 4/16: target/xtensa: extract FPU2000 opcode translators...
Checking PATCH 5/16: target/xtensa: update import_core.sh script for libisa...
ERROR: line over 90 characters
#28: FILE: target/xtensa/import_core.sh:34:
+ -e '/^Slot_[a-zA-Z0-9_]\+_decode (const xtensa_insnbuf insn)/,/^}/s/^ return 0;$/ return XTENSA_UNDEFINED;/' \
total: 1 errors, 0 warnings, 32 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Checking PATCH 6/16: target/xtensa: switch dc232b to libisa...
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#63: FILE: target/xtensa/core-dc232b/xtensa-modules.c:25:
+
^
ERROR: trailing whitespace
#63: FILE: target/xtensa/core-dc232b/xtensa-modules.c:25:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#143: FILE: target/xtensa/core-dc232b/xtensa-modules.c:105:
+
^
ERROR: trailing whitespace
#143: FILE: target/xtensa/core-dc232b/xtensa-modules.c:105:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:263:
+
^
ERROR: trailing whitespace
#301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:263:
+^L$
ERROR: code indent should never use tabs
#1550: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1512:
+^I^I uint32 val ATTRIBUTE_UNUSED)$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1603: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1565:
+
^
ERROR: trailing whitespace
#1603: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1565:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1610: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1572:
+
^
ERROR: trailing whitespace
#1610: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1572:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1618: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1580:
+
^
ERROR: trailing whitespace
#1618: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1580:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1625: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1587:
+
^
ERROR: trailing whitespace
#1625: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1587:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1691: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1653:
+
^
ERROR: trailing whitespace
#1691: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1653:
+^L$
ERROR: line over 90 characters
#1925: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1887:
+ simm7_0 = ((((-((((imm7_0 >> 6) & 1)) & (((imm7_0 >> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0;
ERROR: that open brace { should be on the previous line
#1989: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1951:
+ switch (ai4const_0)
+ {
ERROR: trailing statements should be on next line
#1991: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1953:
+ case 0xffffffff: t_0 = 0; break;
ERROR: trailing statements should be on next line
#1992: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1954:
+ case 0x1: t_0 = 0x1; break;
ERROR: trailing statements should be on next line
#1993: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1955:
+ case 0x2: t_0 = 0x2; break;
ERROR: trailing statements should be on next line
#1994: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1956:
+ case 0x3: t_0 = 0x3; break;
ERROR: trailing statements should be on next line
#1995: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1957:
+ case 0x4: t_0 = 0x4; break;
ERROR: trailing statements should be on next line
#1996: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1958:
+ case 0x5: t_0 = 0x5; break;
ERROR: trailing statements should be on next line
#1997: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1959:
+ case 0x6: t_0 = 0x6; break;
ERROR: trailing statements should be on next line
#1998: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1960:
+ case 0x7: t_0 = 0x7; break;
ERROR: trailing statements should be on next line
#1999: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1961:
+ case 0x8: t_0 = 0x8; break;
ERROR: trailing statements should be on next line
#2000: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1962:
+ case 0x9: t_0 = 0x9; break;
ERROR: trailing statements should be on next line
#2001: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1963:
+ case 0xa: t_0 = 0xa; break;
ERROR: trailing statements should be on next line
#2002: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1964:
+ case 0xb: t_0 = 0xb; break;
ERROR: trailing statements should be on next line
#2003: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1965:
+ case 0xc: t_0 = 0xc; break;
ERROR: trailing statements should be on next line
#2004: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1966:
+ case 0xd: t_0 = 0xd; break;
ERROR: trailing statements should be on next line
#2005: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1967:
+ case 0xe: t_0 = 0xe; break;
ERROR: trailing statements should be on next line
#2006: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1968:
+ default: t_0 = 0xf; break;
ERROR: that open brace { should be on the previous line
#2027: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1989:
+ switch (b4const_0)
+ {
ERROR: trailing statements should be on next line
#2029: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1991:
+ case 0xffffffff: r_0 = 0; break;
ERROR: trailing statements should be on next line
#2030: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1992:
+ case 0x1: r_0 = 0x1; break;
ERROR: trailing statements should be on next line
#2031: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1993:
+ case 0x2: r_0 = 0x2; break;
ERROR: trailing statements should be on next line
#2032: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1994:
+ case 0x3: r_0 = 0x3; break;
ERROR: trailing statements should be on next line
#2033: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1995:
+ case 0x4: r_0 = 0x4; break;
ERROR: trailing statements should be on next line
#2034: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1996:
+ case 0x5: r_0 = 0x5; break;
ERROR: trailing statements should be on next line
#2035: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1997:
+ case 0x6: r_0 = 0x6; break;
ERROR: trailing statements should be on next line
#2036: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1998:
+ case 0x7: r_0 = 0x7; break;
ERROR: trailing statements should be on next line
#2037: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1999:
+ case 0x8: r_0 = 0x8; break;
ERROR: trailing statements should be on next line
#2038: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2000:
+ case 0xa: r_0 = 0x9; break;
ERROR: trailing statements should be on next line
#2039: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2001:
+ case 0xc: r_0 = 0xa; break;
ERROR: trailing statements should be on next line
#2040: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2002:
+ case 0x10: r_0 = 0xb; break;
ERROR: trailing statements should be on next line
#2041: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2003:
+ case 0x20: r_0 = 0xc; break;
ERROR: trailing statements should be on next line
#2042: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2004:
+ case 0x40: r_0 = 0xd; break;
ERROR: trailing statements should be on next line
#2043: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2005:
+ case 0x80: r_0 = 0xe; break;
ERROR: trailing statements should be on next line
#2044: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2006:
+ default: r_0 = 0xf; break;
ERROR: that open brace { should be on the previous line
#2065: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2027:
+ switch (b4constu_0)
+ {
ERROR: trailing statements should be on next line
#2067: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2029:
+ case 0x8000: r_0 = 0; break;
ERROR: trailing statements should be on next line
#2068: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2030:
+ case 0x10000: r_0 = 0x1; break;
ERROR: trailing statements should be on next line
#2069: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2031:
+ case 0x2: r_0 = 0x2; break;
ERROR: trailing statements should be on next line
#2070: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2032:
+ case 0x3: r_0 = 0x3; break;
ERROR: trailing statements should be on next line
#2071: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2033:
+ case 0x4: r_0 = 0x4; break;
ERROR: trailing statements should be on next line
#2072: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2034:
+ case 0x5: r_0 = 0x5; break;
ERROR: trailing statements should be on next line
#2073: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2035:
+ case 0x6: r_0 = 0x6; break;
ERROR: trailing statements should be on next line
#2074: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2036:
+ case 0x7: r_0 = 0x7; break;
ERROR: trailing statements should be on next line
#2075: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2037:
+ case 0x8: r_0 = 0x8; break;
ERROR: trailing statements should be on next line
#2076: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2038:
+ case 0xa: r_0 = 0x9; break;
ERROR: trailing statements should be on next line
#2077: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2039:
+ case 0xc: r_0 = 0xa; break;
ERROR: trailing statements should be on next line
#2078: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2040:
+ case 0x10: r_0 = 0xb; break;
ERROR: trailing statements should be on next line
#2079: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2041:
+ case 0x20: r_0 = 0xc; break;
ERROR: trailing statements should be on next line
#2080: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2042:
+ case 0x40: r_0 = 0xd; break;
ERROR: trailing statements should be on next line
#2081: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2043:
+ case 0x80: r_0 = 0xe; break;
ERROR: trailing statements should be on next line
#2082: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2044:
+ default: r_0 = 0xf; break;
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#2897: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2859:
+
^
ERROR: trailing whitespace
#2897: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2859:
+^L$
WARNING: line over 80 characters
#6344: FILE: target/xtensa/core-dc232b/xtensa-modules.c:6306:
+ 1, Iclass_iclass_READ_IMPWIRE_stateArgs, 1, Iclass_iclass_READ_IMPWIRE_intfArgs },
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#6353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:6315:
+
^
ERROR: trailing whitespace
#6353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:6315:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#10816: FILE: target/xtensa/core-dc232b/xtensa-modules.c:10778:
+
^
ERROR: trailing whitespace
#10816: FILE: target/xtensa/core-dc232b/xtensa-modules.c:10778:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#12160: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12122:
+
^
ERROR: trailing whitespace
#12160: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12122:
+^L$
ERROR: that open brace { should be on the previous line
#12166: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12128:
+ switch (Field_op0_Slot_inst_get (insn))
+ {
ERROR: that open brace { should be on the previous line
#12169: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12131:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12170: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12132:
+^I{$
ERROR: code indent should never use tabs
#12171: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12133:
+^Icase 0:$
ERROR: code indent should never use tabs
#12172: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12134:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12172: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12134:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12173: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12135:
+^I {$
ERROR: code indent should never use tabs
#12174: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12136:
+^I case 0:$
ERROR: code indent should never use tabs
#12175: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12137:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12175: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12137:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12176: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12138:
+^I^I{$
ERROR: code indent should never use tabs
#12177: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12139:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12178: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12140:
+^I^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12178: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12140:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12179: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12141:
+^I^I {$
ERROR: code indent should never use tabs
#12180: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12142:
+^I^I case 0:$
ERROR: code indent should never use tabs
#12181: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12143:
+^I^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#12181: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12143:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#12182: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12144:
+^I^I^I Field_n_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#12183: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12145:
+^I^I^Ireturn 79; /* ill */$
ERROR: code indent should never use tabs
#12184: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12146:
+^I^I break;$
ERROR: code indent should never use tabs
#12185: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12147:
+^I^I case 2:$
ERROR: code indent should never use tabs
#12186: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12148:
+^I^I switch (Field_n_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12186: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12148:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12187: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12149:
+^I^I^I{$
ERROR: code indent should never use tabs
#12188: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12150:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#12189: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12151:
+^I^I^I return 98; /* ret */$
ERROR: code indent should never use tabs
#12190: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12152:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#12191: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12153:
+^I^I^I return 14; /* retw */$
ERROR: code indent should never use tabs
#12192: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12154:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#12193: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12155:
+^I^I^I return 81; /* jx */$
ERROR: code indent should never use tabs
#12194: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12156:
+^I^I^I}$
ERROR: code indent should never use tabs
#12195: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12157:
+^I^I break;$
ERROR: code indent should never use tabs
#12196: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12158:
+^I^I case 3:$
ERROR: code indent should never use tabs
#12197: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12159:
+^I^I switch (Field_n_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12197: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12159:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12198: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12160:
+^I^I^I{$
ERROR: code indent should never use tabs
#12199: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12161:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#12200: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12162:
+^I^I^I return 77; /* callx0 */$
ERROR: code indent should never use tabs
#12201: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12163:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#12202: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12164:
+^I^I^I return 10; /* callx4 */$
ERROR: code indent should never use tabs
#12203: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12165:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#12204: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12166:
+^I^I^I return 9; /* callx8 */$
ERROR: code indent should never use tabs
#12205: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12167:
+^I^I^Icase 3:$
ERROR: code indent should never use tabs
#12206: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12168:
+^I^I^I return 8; /* callx12 */$
ERROR: code indent should never use tabs
#12207: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12169:
+^I^I^I}$
ERROR: code indent should never use tabs
#12208: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12170:
+^I^I break;$
ERROR: code indent should never use tabs
#12209: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12171:
+^I^I }$
ERROR: code indent should never use tabs
#12210: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12172:
+^I^I break;$
ERROR: code indent should never use tabs
#12211: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12173:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12212: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12174:
+^I^I return 12; /* movsp */$
ERROR: code indent should never use tabs
#12213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12175:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12176:
+^I^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: that open brace { should be on the previous line
#12214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12176:
+ if (Field_s_Slot_inst_get (insn) == 0)
+ {
ERROR: suspect code indent for conditional statements (18, 22)
#12214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12176:
+ if (Field_s_Slot_inst_get (insn) == 0)
+ {
ERROR: code indent should never use tabs
#12215: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12177:
+^I^I {$
ERROR: code indent should never use tabs
#12216: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12178:
+^I^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12216: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12178:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12217: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12179:
+^I^I^I{$
ERROR: code indent should never use tabs
#12218: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12180:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#12219: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12181:
+^I^I^I return 116; /* isync */$
ERROR: code indent should never use tabs
#12220: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12182:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#12221: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12183:
+^I^I^I return 117; /* rsync */$
ERROR: code indent should never use tabs
#12222: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12184:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#12223: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12185:
+^I^I^I return 118; /* esync */$
ERROR: code indent should never use tabs
#12224: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12186:
+^I^I^Icase 3:$
ERROR: code indent should never use tabs
#12225: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12187:
+^I^I^I return 119; /* dsync */$
ERROR: code indent should never use tabs
#12226: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12188:
+^I^I^Icase 8:$
ERROR: code indent should never use tabs
#12227: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12189:
+^I^I^I return 0; /* excw */$
ERROR: code indent should never use tabs
#12228: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12190:
+^I^I^Icase 12:$
ERROR: code indent should never use tabs
#12229: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12191:
+^I^I^I return 114; /* memw */$
ERROR: code indent should never use tabs
#12230: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12192:
+^I^I^Icase 13:$
ERROR: code indent should never use tabs
#12231: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12193:
+^I^I^I return 115; /* extw */$
ERROR: code indent should never use tabs
#12232: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12194:
+^I^I^Icase 15:$
ERROR: code indent should never use tabs
#12233: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12195:
+^I^I^I return 97; /* nop */$
ERROR: code indent should never use tabs
#12234: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12196:
+^I^I^I}$
ERROR: code indent should never use tabs
#12235: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12197:
+^I^I }$
ERROR: code indent should never use tabs
#12236: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12198:
+^I^I break;$
ERROR: code indent should never use tabs
#12237: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12199:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12238: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12200:
+^I^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12238: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12200:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12239: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12201:
+^I^I {$
ERROR: code indent should never use tabs
#12240: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12202:
+^I^I case 0:$
ERROR: code indent should never use tabs
#12241: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12203:
+^I^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12241: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12203:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12242: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12204:
+^I^I^I{$
ERROR: code indent should never use tabs
#12243: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12205:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#12244: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12206:
+^I^I^I return 1; /* rfe */$
ERROR: code indent should never use tabs
#12245: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12207:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#12246: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12208:
+^I^I^I return 2; /* rfde */$
ERROR: code indent should never use tabs
#12247: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12209:
+^I^I^Icase 4:$
ERROR: code indent should never use tabs
#12248: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12210:
+^I^I^I return 16; /* rfwo */$
ERROR: code indent should never use tabs
#12249: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12211:
+^I^I^Icase 5:$
ERROR: code indent should never use tabs
#12250: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12212:
+^I^I^I return 17; /* rfwu */$
ERROR: code indent should never use tabs
#12251: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12213:
+^I^I^I}$
ERROR: code indent should never use tabs
#12252: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12214:
+^I^I break;$
ERROR: code indent should never use tabs
#12253: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12215:
+^I^I case 1:$
ERROR: code indent should never use tabs
#12254: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12216:
+^I^I return 310; /* rfi */$
ERROR: code indent should never use tabs
#12255: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12217:
+^I^I }$
ERROR: code indent should never use tabs
#12256: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12218:
+^I^I break;$
ERROR: code indent should never use tabs
#12257: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12219:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#12258: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12220:
+^I^I return 318; /* break */$
ERROR: code indent should never use tabs
#12259: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12221:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#12260: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12222:
+^I^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12260: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12222:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12261: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12223:
+^I^I {$
ERROR: code indent should never use tabs
#12262: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12224:
+^I^I case 0:$
ERROR: code indent should never use tabs
#12263: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12225:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12263: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12225:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12264: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12226:
+^I^I^Ireturn 3; /* syscall */$
ERROR: code indent should never use tabs
#12265: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12227:
+^I^I break;$
ERROR: code indent should never use tabs
#12266: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12228:
+^I^I case 1:$
ERROR: code indent should never use tabs
#12267: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12229:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12267: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12229:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12268: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12230:
+^I^I^Ireturn 4; /* simcall */$
ERROR: code indent should never use tabs
#12269: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12231:
+^I^I break;$
ERROR: code indent should never use tabs
#12270: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12232:
+^I^I }$
ERROR: code indent should never use tabs
#12271: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12233:
+^I^I break;$
ERROR: code indent should never use tabs
#12272: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12234:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#12273: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12235:
+^I^I return 120; /* rsil */$
ERROR: code indent should never use tabs
#12274: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12236:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#12275: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12237:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12275: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12237:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12276: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12238:
+^I^I return 311; /* waiti */$
ERROR: code indent should never use tabs
#12277: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12239:
+^I^I break;$
ERROR: code indent should never use tabs
#12278: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12240:
+^I^I}$
ERROR: code indent should never use tabs
#12279: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12241:
+^I break;$
ERROR: code indent should never use tabs
#12280: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12242:
+^I case 1:$
ERROR: code indent should never use tabs
#12281: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12243:
+^I return 49; /* and */$
ERROR: code indent should never use tabs
#12282: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12244:
+^I case 2:$
ERROR: code indent should never use tabs
#12283: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12245:
+^I return 50; /* or */$
ERROR: code indent should never use tabs
#12284: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12246:
+^I case 3:$
ERROR: code indent should never use tabs
#12285: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12247:
+^I return 51; /* xor */$
ERROR: code indent should never use tabs
#12286: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12248:
+^I case 4:$
ERROR: code indent should never use tabs
#12287: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12249:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12287: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12249:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12288: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12250:
+^I^I{$
ERROR: code indent should never use tabs
#12289: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12251:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12290: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12252:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12290: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12252:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12291: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12253:
+^I^I return 102; /* ssr */$
ERROR: code indent should never use tabs
#12292: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12254:
+^I^I break;$
ERROR: code indent should never use tabs
#12293: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12255:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12294: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12256:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12294: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12256:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12295: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12257:
+^I^I return 103; /* ssl */$
ERROR: code indent should never use tabs
#12296: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12258:
+^I^I break;$
ERROR: code indent should never use tabs
#12297: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12259:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12298: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12260:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12298: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12260:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12299: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12261:
+^I^I return 104; /* ssa8l */$
ERROR: code indent should never use tabs
#12300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12262:
+^I^I break;$
ERROR: code indent should never use tabs
#12301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12263:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12302: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12264:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12302: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12264:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12303: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12265:
+^I^I return 105; /* ssa8b */$
ERROR: code indent should never use tabs
#12304: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12266:
+^I^I break;$
ERROR: code indent should never use tabs
#12305: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12267:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#12306: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12268:
+^I^I if (Field_thi3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12306: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12268:
+ if (Field_thi3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12307: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12269:
+^I^I return 106; /* ssai */$
ERROR: code indent should never use tabs
#12308: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12270:
+^I^I break;$
ERROR: code indent should never use tabs
#12309: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12271:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#12310: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12272:
+^I^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12310: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12272:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12311: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12273:
+^I^I return 13; /* rotw */$
ERROR: code indent should never use tabs
#12312: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12274:
+^I^I break;$
ERROR: code indent should never use tabs
#12313: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12275:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#12314: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12276:
+^I^I return 426; /* nsa */$
ERROR: code indent should never use tabs
#12315: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12277:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#12316: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12278:
+^I^I return 427; /* nsau */$
ERROR: code indent should never use tabs
#12317: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12279:
+^I^I}$
ERROR: code indent should never use tabs
#12318: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12280:
+^I break;$
ERROR: code indent should never use tabs
#12319: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12281:
+^I case 5:$
ERROR: code indent should never use tabs
#12320: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12282:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12320: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12282:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12321: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12283:
+^I^I{$
ERROR: code indent should never use tabs
#12322: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12284:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12323: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12285:
+^I^I return 416; /* hwwitlba */$
ERROR: code indent should never use tabs
#12324: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12286:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12325: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12287:
+^I^I return 412; /* ritlb0 */$
ERROR: code indent should never use tabs
#12326: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12288:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#12327: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12289:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12327: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12289:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12328: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12290:
+^I^I return 410; /* iitlb */$
ERROR: code indent should never use tabs
#12329: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12291:
+^I^I break;$
ERROR: code indent should never use tabs
#12330: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12292:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#12331: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12293:
+^I^I return 411; /* pitlb */$
ERROR: code indent should never use tabs
#12332: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12294:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#12333: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12295:
+^I^I return 414; /* witlb */$
ERROR: code indent should never use tabs
#12334: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12296:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#12335: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12297:
+^I^I return 413; /* ritlb1 */$
ERROR: code indent should never use tabs
#12336: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12298:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#12337: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12299:
+^I^I return 417; /* hwwdtlba */$
ERROR: code indent should never use tabs
#12338: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12300:
+^I^Icase 11:$
ERROR: code indent should never use tabs
#12339: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12301:
+^I^I return 407; /* rdtlb0 */$
ERROR: code indent should never use tabs
#12340: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12302:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#12341: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12303:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12341: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12303:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12342: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12304:
+^I^I return 405; /* idtlb */$
ERROR: code indent should never use tabs
#12343: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12305:
+^I^I break;$
ERROR: code indent should never use tabs
#12344: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12306:
+^I^Icase 13:$
ERROR: code indent should never use tabs
#12345: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12307:
+^I^I return 406; /* pdtlb */$
ERROR: code indent should never use tabs
#12346: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12308:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#12347: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12309:
+^I^I return 409; /* wdtlb */$
ERROR: code indent should never use tabs
#12348: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12310:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#12349: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12311:
+^I^I return 408; /* rdtlb1 */$
ERROR: code indent should never use tabs
#12350: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12312:
+^I^I}$
ERROR: code indent should never use tabs
#12351: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12313:
+^I break;$
ERROR: code indent should never use tabs
#12352: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12314:
+^I case 6:$
ERROR: code indent should never use tabs
#12353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12315:
+^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12315:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12354: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12316:
+^I^I{$
ERROR: code indent should never use tabs
#12355: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12317:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12356: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12318:
+^I^I return 95; /* neg */$
ERROR: code indent should never use tabs
#12357: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12319:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12358: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12320:
+^I^I return 96; /* abs */$
ERROR: code indent should never use tabs
#12359: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12321:
+^I^I}$
ERROR: code indent should never use tabs
#12360: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12322:
+^I break;$
ERROR: code indent should never use tabs
#12361: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12323:
+^I case 8:$
ERROR: code indent should never use tabs
#12362: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12324:
+^I return 41; /* add */$
ERROR: code indent should never use tabs
#12363: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12325:
+^I case 9:$
ERROR: code indent should never use tabs
#12364: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12326:
+^I return 43; /* addx2 */$
ERROR: code indent should never use tabs
#12365: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12327:
+^I case 10:$
ERROR: code indent should never use tabs
#12366: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12328:
+^I return 44; /* addx4 */$
ERROR: code indent should never use tabs
#12367: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12329:
+^I case 11:$
ERROR: code indent should never use tabs
#12368: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12330:
+^I return 45; /* addx8 */$
ERROR: code indent should never use tabs
#12369: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12331:
+^I case 12:$
ERROR: code indent should never use tabs
#12370: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12332:
+^I return 42; /* sub */$
ERROR: code indent should never use tabs
#12371: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12333:
+^I case 13:$
ERROR: code indent should never use tabs
#12372: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12334:
+^I return 46; /* subx2 */$
ERROR: code indent should never use tabs
#12373: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12335:
+^I case 14:$
ERROR: code indent should never use tabs
#12374: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12336:
+^I return 47; /* subx4 */$
ERROR: code indent should never use tabs
#12375: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12337:
+^I case 15:$
ERROR: code indent should never use tabs
#12376: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12338:
+^I return 48; /* subx8 */$
ERROR: code indent should never use tabs
#12377: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12339:
+^I }$
ERROR: code indent should never use tabs
#12378: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12340:
+^I break;$
ERROR: code indent should never use tabs
#12379: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12341:
+^Icase 1:$
ERROR: code indent should never use tabs
#12380: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12342:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12380: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12342:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12381: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12343:
+^I {$
ERROR: code indent should never use tabs
#12382: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12344:
+^I case 0:$
ERROR: code indent should never use tabs
#12383: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12345:
+^I case 1:$
ERROR: code indent should never use tabs
#12384: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12346:
+^I return 111; /* slli */$
ERROR: code indent should never use tabs
#12385: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12347:
+^I case 2:$
ERROR: code indent should never use tabs
#12386: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12348:
+^I case 3:$
ERROR: code indent should never use tabs
#12387: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12349:
+^I return 112; /* srai */$
ERROR: code indent should never use tabs
#12388: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12350:
+^I case 4:$
ERROR: code indent should never use tabs
#12389: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12351:
+^I return 113; /* srli */$
ERROR: code indent should never use tabs
#12390: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12352:
+^I case 6:$
ERROR: code indent should never use tabs
#12391: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12353:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12391: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12353:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12392: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12354:
+^I^I{$
ERROR: code indent should never use tabs
#12393: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12355:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12394: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12356:
+^I^I return 129; /* xsr.lbeg */$
ERROR: code indent should never use tabs
#12395: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12357:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12396: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12358:
+^I^I return 123; /* xsr.lend */$
ERROR: code indent should never use tabs
#12397: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12359:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12398: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12360:
+^I^I return 126; /* xsr.lcount */$
ERROR: code indent should never use tabs
#12399: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12361:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12400: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12362:
+^I^I return 132; /* xsr.sar */$
ERROR: code indent should never use tabs
#12401: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12363:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#12402: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12364:
+^I^I return 135; /* xsr.litbase */$
ERROR: code indent should never use tabs
#12403: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12365:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#12404: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12366:
+^I^I return 434; /* xsr.scompare1 */$
ERROR: code indent should never use tabs
#12405: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12367:
+^I^Icase 16:$
ERROR: code indent should never use tabs
#12406: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12368:
+^I^I return 306; /* xsr.acclo */$
ERROR: code indent should never use tabs
#12407: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12369:
+^I^Icase 17:$
ERROR: code indent should never use tabs
#12408: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12370:
+^I^I return 309; /* xsr.acchi */$
ERROR: code indent should never use tabs
#12409: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12371:
+^I^Icase 32:$
ERROR: code indent should never use tabs
#12410: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12372:
+^I^I return 294; /* xsr.m0 */$
ERROR: code indent should never use tabs
#12411: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12373:
+^I^Icase 33:$
ERROR: code indent should never use tabs
#12412: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12374:
+^I^I return 297; /* xsr.m1 */$
ERROR: code indent should never use tabs
#12413: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12375:
+^I^Icase 34:$
ERROR: code indent should never use tabs
#12414: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12376:
+^I^I return 300; /* xsr.m2 */$
ERROR: code indent should never use tabs
#12415: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12377:
+^I^Icase 35:$
ERROR: code indent should never use tabs
#12416: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12378:
+^I^I return 303; /* xsr.m3 */$
ERROR: code indent should never use tabs
#12417: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12379:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#12418: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12380:
+^I^I return 22; /* xsr.windowbase */$
ERROR: code indent should never use tabs
#12419: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12381:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#12420: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12382:
+^I^I return 25; /* xsr.windowstart */$
ERROR: code indent should never use tabs
#12421: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12383:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#12422: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12384:
+^I^I return 395; /* xsr.ptevaddr */$
ERROR: code indent should never use tabs
#12423: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12385:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#12424: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12386:
+^I^I return 398; /* xsr.rasid */$
ERROR: code indent should never use tabs
#12425: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12387:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#12426: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12388:
+^I^I return 401; /* xsr.itlbcfg */$
ERROR: code indent should never use tabs
#12427: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12389:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#12428: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12390:
+^I^I return 404; /* xsr.dtlbcfg */$
ERROR: code indent should never use tabs
#12429: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12391:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#12430: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12392:
+^I^I return 340; /* xsr.ibreakenable */$
ERROR: code indent should never use tabs
#12431: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12393:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#12432: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12394:
+^I^I return 352; /* xsr.ddr */$
ERROR: code indent should never use tabs
#12433: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12395:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#12434: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12396:
+^I^I return 334; /* xsr.ibreaka0 */$
ERROR: code indent should never use tabs
#12435: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12397:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#12436: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12398:
+^I^I return 337; /* xsr.ibreaka1 */$
ERROR: code indent should never use tabs
#12437: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12399:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#12438: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12400:
+^I^I return 322; /* xsr.dbreaka0 */$
ERROR: code indent should never use tabs
#12439: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12401:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#12440: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12402:
+^I^I return 328; /* xsr.dbreaka1 */$
ERROR: code indent should never use tabs
#12441: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12403:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#12442: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12404:
+^I^I return 325; /* xsr.dbreakc0 */$
ERROR: code indent should never use tabs
#12443: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12405:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#12444: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12406:
+^I^I return 331; /* xsr.dbreakc1 */$
ERROR: code indent should never use tabs
#12445: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12407:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#12446: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12408:
+^I^I return 143; /* xsr.epc1 */$
ERROR: code indent should never use tabs
#12447: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12409:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#12448: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12410:
+^I^I return 149; /* xsr.epc2 */$
ERROR: code indent should never use tabs
#12449: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12411:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#12450: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12412:
+^I^I return 155; /* xsr.epc3 */$
ERROR: code indent should never use tabs
#12451: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12413:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#12452: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12414:
+^I^I return 161; /* xsr.epc4 */$
ERROR: code indent should never use tabs
#12453: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12415:
+^I^Icase 181:$
ERROR: code indent should never use tabs
#12454: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12416:
+^I^I return 167; /* xsr.epc5 */$
ERROR: code indent should never use tabs
#12455: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12417:
+^I^Icase 182:$
ERROR: code indent should never use tabs
#12456: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12418:
+^I^I return 173; /* xsr.epc6 */$
ERROR: code indent should never use tabs
#12457: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12419:
+^I^Icase 183:$
ERROR: code indent should never use tabs
#12458: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12420:
+^I^I return 179; /* xsr.epc7 */$
ERROR: code indent should never use tabs
#12459: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12421:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#12460: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12422:
+^I^I return 206; /* xsr.depc */$
ERROR: code indent should never use tabs
#12461: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12423:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#12462: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12424:
+^I^I return 185; /* xsr.eps2 */$
ERROR: code indent should never use tabs
#12463: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12425:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#12464: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12426:
+^I^I return 188; /* xsr.eps3 */$
ERROR: code indent should never use tabs
#12465: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12427:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#12466: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12428:
+^I^I return 191; /* xsr.eps4 */$
ERROR: code indent should never use tabs
#12467: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12429:
+^I^Icase 197:$
ERROR: code indent should never use tabs
#12468: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12430:
+^I^I return 194; /* xsr.eps5 */$
ERROR: code indent should never use tabs
#12469: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12431:
+^I^Icase 198:$
ERROR: code indent should never use tabs
#12470: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12432:
+^I^I return 197; /* xsr.eps6 */$
ERROR: code indent should never use tabs
#12471: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12433:
+^I^Icase 199:$
ERROR: code indent should never use tabs
#12472: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12434:
+^I^I return 200; /* xsr.eps7 */$
ERROR: code indent should never use tabs
#12473: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12435:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#12474: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12436:
+^I^I return 146; /* xsr.excsave1 */$
ERROR: code indent should never use tabs
#12475: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12437:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#12476: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12438:
+^I^I return 152; /* xsr.excsave2 */$
ERROR: code indent should never use tabs
#12477: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12439:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#12478: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12440:
+^I^I return 158; /* xsr.excsave3 */$
ERROR: code indent should never use tabs
#12479: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12441:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#12480: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12442:
+^I^I return 164; /* xsr.excsave4 */$
ERROR: code indent should never use tabs
#12481: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12443:
+^I^Icase 213:$
ERROR: code indent should never use tabs
#12482: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12444:
+^I^I return 170; /* xsr.excsave5 */$
ERROR: code indent should never use tabs
#12483: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12445:
+^I^Icase 214:$
ERROR: code indent should never use tabs
#12484: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12446:
+^I^I return 176; /* xsr.excsave6 */$
ERROR: code indent should never use tabs
#12485: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12447:
+^I^Icase 215:$
ERROR: code indent should never use tabs
#12486: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12448:
+^I^I return 182; /* xsr.excsave7 */$
ERROR: code indent should never use tabs
#12487: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12449:
+^I^Icase 224:$
ERROR: code indent should never use tabs
#12488: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12450:
+^I^I return 420; /* xsr.cpenable */$
ERROR: code indent should never use tabs
#12489: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12451:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#12490: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12452:
+^I^I return 317; /* xsr.intenable */$
ERROR: code indent should never use tabs
#12491: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12453:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#12492: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12454:
+^I^I return 140; /* xsr.ps */$
ERROR: code indent should never use tabs
#12493: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12455:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#12494: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12456:
+^I^I return 219; /* xsr.vecbase */$
ERROR: code indent should never use tabs
#12495: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12457:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#12496: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12458:
+^I^I return 209; /* xsr.exccause */$
ERROR: code indent should never use tabs
#12497: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12459:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#12498: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12460:
+^I^I return 343; /* xsr.debugcause */$
ERROR: code indent should never use tabs
#12499: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12461:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#12500: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12462:
+^I^I return 358; /* xsr.ccount */$
ERROR: code indent should never use tabs
#12501: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12463:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#12502: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12464:
+^I^I return 346; /* xsr.icount */$
ERROR: code indent should never use tabs
#12503: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12465:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#12504: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12466:
+^I^I return 349; /* xsr.icountlevel */$
ERROR: code indent should never use tabs
#12505: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12467:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#12506: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12468:
+^I^I return 203; /* xsr.excvaddr */$
ERROR: code indent should never use tabs
#12507: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12469:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#12508: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12470:
+^I^I return 361; /* xsr.ccompare0 */$
ERROR: code indent should never use tabs
#12509: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12471:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#12510: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12472:
+^I^I return 364; /* xsr.ccompare1 */$
ERROR: code indent should never use tabs
#12511: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12473:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#12512: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12474:
+^I^I return 367; /* xsr.ccompare2 */$
ERROR: code indent should never use tabs
#12513: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12475:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#12514: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12476:
+^I^I return 212; /* xsr.misc0 */$
ERROR: code indent should never use tabs
#12515: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12477:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#12516: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12478:
+^I^I return 215; /* xsr.misc1 */$
ERROR: code indent should never use tabs
#12517: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12479:
+^I^I}$
ERROR: code indent should never use tabs
#12518: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12480:
+^I break;$
ERROR: code indent should never use tabs
#12519: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12481:
+^I case 8:$
ERROR: code indent should never use tabs
#12520: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12482:
+^I return 108; /* src */$
ERROR: code indent should never use tabs
#12521: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12483:
+^I case 9:$
ERROR: code indent should never use tabs
#12522: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12484:
+^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12522: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12484:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12523: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12485:
+^I^Ireturn 109; /* srl */$
ERROR: code indent should never use tabs
#12524: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12486:
+^I break;$
ERROR: code indent should never use tabs
#12525: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12487:
+^I case 10:$
ERROR: code indent should never use tabs
#12526: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12488:
+^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12526: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12488:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12527: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12489:
+^I^Ireturn 107; /* sll */$
ERROR: code indent should never use tabs
#12528: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12490:
+^I break;$
ERROR: code indent should never use tabs
#12529: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12491:
+^I case 11:$
ERROR: code indent should never use tabs
#12530: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12492:
+^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12530: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12492:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12531: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12493:
+^I^Ireturn 110; /* sra */$
ERROR: code indent should never use tabs
#12532: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12494:
+^I break;$
ERROR: code indent should never use tabs
#12533: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12495:
+^I case 12:$
ERROR: code indent should never use tabs
#12534: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12496:
+^I return 290; /* mul16u */$
ERROR: code indent should never use tabs
#12535: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12497:
+^I case 13:$
ERROR: code indent should never use tabs
#12536: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12498:
+^I return 291; /* mul16s */$
ERROR: code indent should never use tabs
#12537: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12499:
+^I case 15:$
ERROR: code indent should never use tabs
#12538: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12500:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12538: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12500:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12539: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12501:
+^I^I{$
ERROR: code indent should never use tabs
#12540: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12502:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12541: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12503:
+^I^I return 374; /* lict */$
ERROR: code indent should never use tabs
#12542: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12504:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12543: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12505:
+^I^I return 376; /* sict */$
ERROR: code indent should never use tabs
#12544: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12506:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12545: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12507:
+^I^I return 375; /* licw */$
ERROR: code indent should never use tabs
#12546: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12508:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12547: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12509:
+^I^I return 377; /* sicw */$
ERROR: code indent should never use tabs
#12548: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12510:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#12549: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12511:
+^I^I return 392; /* ldct */$
ERROR: code indent should never use tabs
#12550: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12512:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#12551: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12513:
+^I^I return 391; /* sdct */$
ERROR: code indent should never use tabs
#12552: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12514:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#12553: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12515:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#12553: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12515:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#12554: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12516:
+^I^I return 353; /* rfdo */$
ERROR: code indent should never use tabs
#12555: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12517:
+^I^I if (Field_t_Slot_inst_get (insn) == 1)$
ERROR: braces {} are necessary for all arms of this statement
#12555: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12517:
+ if (Field_t_Slot_inst_get (insn) == 1)
[...]
ERROR: code indent should never use tabs
#12556: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12518:
+^I^I return 354; /* rfdd */$
ERROR: code indent should never use tabs
#12557: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12519:
+^I^I break;$
ERROR: code indent should never use tabs
#12558: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12520:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#12559: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12521:
+^I^I return 415; /* ldpte */$
ERROR: code indent should never use tabs
#12560: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12522:
+^I^I}$
ERROR: code indent should never use tabs
#12561: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12523:
+^I break;$
ERROR: code indent should never use tabs
#12562: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12524:
+^I }$
ERROR: code indent should never use tabs
#12563: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12525:
+^I break;$
ERROR: code indent should never use tabs
#12564: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12526:
+^Icase 2:$
ERROR: code indent should never use tabs
#12565: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12527:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12565: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12527:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12566: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12528:
+^I {$
ERROR: code indent should never use tabs
#12567: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12529:
+^I case 8:$
ERROR: code indent should never use tabs
#12568: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12530:
+^I return 439; /* mull */$
ERROR: code indent should never use tabs
#12569: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12531:
+^I case 12:$
ERROR: code indent should never use tabs
#12570: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12532:
+^I return 435; /* quou */$
ERROR: code indent should never use tabs
#12571: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12533:
+^I case 13:$
ERROR: code indent should never use tabs
#12572: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12534:
+^I return 436; /* quos */$
ERROR: code indent should never use tabs
#12573: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12535:
+^I case 14:$
ERROR: code indent should never use tabs
#12574: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12536:
+^I return 437; /* remu */$
ERROR: code indent should never use tabs
#12575: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12537:
+^I case 15:$
ERROR: code indent should never use tabs
#12576: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12538:
+^I return 438; /* rems */$
ERROR: code indent should never use tabs
#12577: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12539:
+^I }$
ERROR: code indent should never use tabs
#12578: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12540:
+^I break;$
ERROR: code indent should never use tabs
#12579: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12541:
+^Icase 3:$
ERROR: code indent should never use tabs
#12580: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12542:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12580: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12542:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12581: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12543:
+^I {$
ERROR: code indent should never use tabs
#12582: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12544:
+^I case 0:$
ERROR: code indent should never use tabs
#12583: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12545:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12583: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12545:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12584: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12546:
+^I^I{$
ERROR: code indent should never use tabs
#12585: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12547:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12586: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12548:
+^I^I return 127; /* rsr.lbeg */$
ERROR: code indent should never use tabs
#12587: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12549:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12588: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12550:
+^I^I return 121; /* rsr.lend */$
ERROR: code indent should never use tabs
#12589: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12551:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12590: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12552:
+^I^I return 124; /* rsr.lcount */$
ERROR: code indent should never use tabs
#12591: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12553:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12592: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12554:
+^I^I return 130; /* rsr.sar */$
ERROR: code indent should never use tabs
#12593: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12555:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#12594: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12556:
+^I^I return 133; /* rsr.litbase */$
ERROR: code indent should never use tabs
#12595: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12557:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#12596: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12558:
+^I^I return 432; /* rsr.scompare1 */$
ERROR: code indent should never use tabs
#12597: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12559:
+^I^Icase 16:$
ERROR: code indent should never use tabs
#12598: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12560:
+^I^I return 304; /* rsr.acclo */$
ERROR: code indent should never use tabs
#12599: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12561:
+^I^Icase 17:$
ERROR: code indent should never use tabs
#12600: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12562:
+^I^I return 307; /* rsr.acchi */$
ERROR: code indent should never use tabs
#12601: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12563:
+^I^Icase 32:$
ERROR: code indent should never use tabs
#12602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12564:
+^I^I return 292; /* rsr.m0 */$
ERROR: code indent should never use tabs
#12603: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12565:
+^I^Icase 33:$
ERROR: code indent should never use tabs
#12604: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12566:
+^I^I return 295; /* rsr.m1 */$
ERROR: code indent should never use tabs
#12605: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12567:
+^I^Icase 34:$
ERROR: code indent should never use tabs
#12606: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12568:
+^I^I return 298; /* rsr.m2 */$
ERROR: code indent should never use tabs
#12607: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12569:
+^I^Icase 35:$
ERROR: code indent should never use tabs
#12608: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12570:
+^I^I return 301; /* rsr.m3 */$
ERROR: code indent should never use tabs
#12609: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12571:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#12610: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12572:
+^I^I return 20; /* rsr.windowbase */$
ERROR: code indent should never use tabs
#12611: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12573:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#12612: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12574:
+^I^I return 23; /* rsr.windowstart */$
ERROR: code indent should never use tabs
#12613: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12575:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#12614: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12576:
+^I^I return 394; /* rsr.ptevaddr */$
ERROR: code indent should never use tabs
#12615: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12577:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#12616: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12578:
+^I^I return 396; /* rsr.rasid */$
ERROR: code indent should never use tabs
#12617: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12579:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#12618: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12580:
+^I^I return 399; /* rsr.itlbcfg */$
ERROR: code indent should never use tabs
#12619: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12581:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#12620: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12582:
+^I^I return 402; /* rsr.dtlbcfg */$
ERROR: code indent should never use tabs
#12621: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12583:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#12622: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12584:
+^I^I return 338; /* rsr.ibreakenable */$
ERROR: code indent should never use tabs
#12623: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12585:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#12624: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12586:
+^I^I return 350; /* rsr.ddr */$
ERROR: code indent should never use tabs
#12625: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12587:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#12626: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12588:
+^I^I return 332; /* rsr.ibreaka0 */$
ERROR: code indent should never use tabs
#12627: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12589:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#12628: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12590:
+^I^I return 335; /* rsr.ibreaka1 */$
ERROR: code indent should never use tabs
#12629: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12591:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#12630: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12592:
+^I^I return 320; /* rsr.dbreaka0 */$
ERROR: code indent should never use tabs
#12631: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12593:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#12632: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12594:
+^I^I return 326; /* rsr.dbreaka1 */$
ERROR: code indent should never use tabs
#12633: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12595:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#12634: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12596:
+^I^I return 323; /* rsr.dbreakc0 */$
ERROR: code indent should never use tabs
#12635: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12597:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#12636: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12598:
+^I^I return 329; /* rsr.dbreakc1 */$
ERROR: code indent should never use tabs
#12637: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12599:
+^I^Icase 176:$
ERROR: code indent should never use tabs
#12638: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12600:
+^I^I return 136; /* rsr.176 */$
ERROR: code indent should never use tabs
#12639: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12601:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#12640: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12602:
+^I^I return 141; /* rsr.epc1 */$
ERROR: code indent should never use tabs
#12641: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12603:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#12642: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12604:
+^I^I return 147; /* rsr.epc2 */$
ERROR: code indent should never use tabs
#12643: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12605:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#12644: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12606:
+^I^I return 153; /* rsr.epc3 */$
ERROR: code indent should never use tabs
#12645: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12607:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#12646: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12608:
+^I^I return 159; /* rsr.epc4 */$
ERROR: code indent should never use tabs
#12647: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12609:
+^I^Icase 181:$
ERROR: code indent should never use tabs
#12648: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12610:
+^I^I return 165; /* rsr.epc5 */$
ERROR: code indent should never use tabs
#12649: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12611:
+^I^Icase 182:$
ERROR: code indent should never use tabs
#12650: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12612:
+^I^I return 171; /* rsr.epc6 */$
ERROR: code indent should never use tabs
#12651: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12613:
+^I^Icase 183:$
ERROR: code indent should never use tabs
#12652: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12614:
+^I^I return 177; /* rsr.epc7 */$
ERROR: code indent should never use tabs
#12653: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12615:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#12654: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12616:
+^I^I return 204; /* rsr.depc */$
ERROR: code indent should never use tabs
#12655: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12617:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#12656: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12618:
+^I^I return 183; /* rsr.eps2 */$
ERROR: code indent should never use tabs
#12657: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12619:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#12658: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12620:
+^I^I return 186; /* rsr.eps3 */$
ERROR: code indent should never use tabs
#12659: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12621:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#12660: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12622:
+^I^I return 189; /* rsr.eps4 */$
ERROR: code indent should never use tabs
#12661: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12623:
+^I^Icase 197:$
ERROR: code indent should never use tabs
#12662: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12624:
+^I^I return 192; /* rsr.eps5 */$
ERROR: code indent should never use tabs
#12663: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12625:
+^I^Icase 198:$
ERROR: code indent should never use tabs
#12664: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12626:
+^I^I return 195; /* rsr.eps6 */$
ERROR: code indent should never use tabs
#12665: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12627:
+^I^Icase 199:$
ERROR: code indent should never use tabs
#12666: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12628:
+^I^I return 198; /* rsr.eps7 */$
ERROR: code indent should never use tabs
#12667: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12629:
+^I^Icase 208:$
ERROR: code indent should never use tabs
#12668: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12630:
+^I^I return 137; /* rsr.208 */$
ERROR: code indent should never use tabs
#12669: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12631:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#12670: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12632:
+^I^I return 144; /* rsr.excsave1 */$
ERROR: code indent should never use tabs
#12671: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12633:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#12672: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12634:
+^I^I return 150; /* rsr.excsave2 */$
ERROR: code indent should never use tabs
#12673: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12635:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#12674: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12636:
+^I^I return 156; /* rsr.excsave3 */$
ERROR: code indent should never use tabs
#12675: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12637:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#12676: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12638:
+^I^I return 162; /* rsr.excsave4 */$
ERROR: code indent should never use tabs
#12677: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12639:
+^I^Icase 213:$
ERROR: code indent should never use tabs
#12678: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12640:
+^I^I return 168; /* rsr.excsave5 */$
ERROR: code indent should never use tabs
#12679: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12641:
+^I^Icase 214:$
ERROR: code indent should never use tabs
#12680: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12642:
+^I^I return 174; /* rsr.excsave6 */$
ERROR: code indent should never use tabs
#12681: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12643:
+^I^Icase 215:$
ERROR: code indent should never use tabs
#12682: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12644:
+^I^I return 180; /* rsr.excsave7 */$
ERROR: code indent should never use tabs
#12683: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12645:
+^I^Icase 224:$
ERROR: code indent should never use tabs
#12684: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12646:
+^I^I return 418; /* rsr.cpenable */$
ERROR: code indent should never use tabs
#12685: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12647:
+^I^Icase 226:$
ERROR: code indent should never use tabs
#12686: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12648:
+^I^I return 312; /* rsr.interrupt */$
ERROR: code indent should never use tabs
#12687: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12649:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#12688: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12650:
+^I^I return 315; /* rsr.intenable */$
ERROR: code indent should never use tabs
#12689: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12651:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#12690: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12652:
+^I^I return 138; /* rsr.ps */$
ERROR: code indent should never use tabs
#12691: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12653:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#12692: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12654:
+^I^I return 217; /* rsr.vecbase */$
ERROR: code indent should never use tabs
#12693: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12655:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#12694: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12656:
+^I^I return 207; /* rsr.exccause */$
ERROR: code indent should never use tabs
#12695: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12657:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#12696: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12658:
+^I^I return 341; /* rsr.debugcause */$
ERROR: code indent should never use tabs
#12697: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12659:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#12698: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12660:
+^I^I return 356; /* rsr.ccount */$
ERROR: code indent should never use tabs
#12699: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12661:
+^I^Icase 235:$
ERROR: code indent should never use tabs
#12700: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12662:
+^I^I return 216; /* rsr.prid */$
ERROR: code indent should never use tabs
#12701: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12663:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#12702: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12664:
+^I^I return 344; /* rsr.icount */$
ERROR: code indent should never use tabs
#12703: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12665:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#12704: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12666:
+^I^I return 347; /* rsr.icountlevel */$
ERROR: code indent should never use tabs
#12705: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12667:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#12706: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12668:
+^I^I return 201; /* rsr.excvaddr */$
ERROR: code indent should never use tabs
#12707: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12669:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#12708: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12670:
+^I^I return 359; /* rsr.ccompare0 */$
ERROR: code indent should never use tabs
#12709: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12671:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#12710: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12672:
+^I^I return 362; /* rsr.ccompare1 */$
ERROR: code indent should never use tabs
#12711: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12673:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#12712: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12674:
+^I^I return 365; /* rsr.ccompare2 */$
ERROR: code indent should never use tabs
#12713: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12675:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#12714: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12676:
+^I^I return 210; /* rsr.misc0 */$
ERROR: code indent should never use tabs
#12715: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12677:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#12716: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12678:
+^I^I return 213; /* rsr.misc1 */$
ERROR: code indent should never use tabs
#12717: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12679:
+^I^I}$
ERROR: code indent should never use tabs
#12718: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12680:
+^I break;$
ERROR: code indent should never use tabs
#12719: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12681:
+^I case 1:$
ERROR: code indent should never use tabs
#12720: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12682:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12720: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12682:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12721: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12683:
+^I^I{$
ERROR: code indent should never use tabs
#12722: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12684:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12723: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12685:
+^I^I return 128; /* wsr.lbeg */$
ERROR: code indent should never use tabs
#12724: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12686:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#12725: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12687:
+^I^I return 122; /* wsr.lend */$
ERROR: code indent should never use tabs
#12726: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12688:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12727: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12689:
+^I^I return 125; /* wsr.lcount */$
ERROR: code indent should never use tabs
#12728: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12690:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12729: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12691:
+^I^I return 131; /* wsr.sar */$
ERROR: code indent should never use tabs
#12730: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12692:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#12731: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12693:
+^I^I return 134; /* wsr.litbase */$
ERROR: code indent should never use tabs
#12732: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12694:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#12733: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12695:
+^I^I return 433; /* wsr.scompare1 */$
ERROR: code indent should never use tabs
#12734: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12696:
+^I^Icase 16:$
ERROR: code indent should never use tabs
#12735: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12697:
+^I^I return 305; /* wsr.acclo */$
ERROR: code indent should never use tabs
#12736: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12698:
+^I^Icase 17:$
ERROR: code indent should never use tabs
#12737: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12699:
+^I^I return 308; /* wsr.acchi */$
ERROR: code indent should never use tabs
#12738: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12700:
+^I^Icase 32:$
ERROR: code indent should never use tabs
#12739: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12701:
+^I^I return 293; /* wsr.m0 */$
ERROR: code indent should never use tabs
#12740: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12702:
+^I^Icase 33:$
ERROR: code indent should never use tabs
#12741: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12703:
+^I^I return 296; /* wsr.m1 */$
ERROR: code indent should never use tabs
#12742: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12704:
+^I^Icase 34:$
ERROR: code indent should never use tabs
#12743: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12705:
+^I^I return 299; /* wsr.m2 */$
ERROR: code indent should never use tabs
#12744: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12706:
+^I^Icase 35:$
ERROR: code indent should never use tabs
#12745: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12707:
+^I^I return 302; /* wsr.m3 */$
ERROR: code indent should never use tabs
#12746: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12708:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#12747: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12709:
+^I^I return 21; /* wsr.windowbase */$
ERROR: code indent should never use tabs
#12748: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12710:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#12749: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12711:
+^I^I return 24; /* wsr.windowstart */$
ERROR: code indent should never use tabs
#12750: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12712:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#12751: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12713:
+^I^I return 393; /* wsr.ptevaddr */$
ERROR: code indent should never use tabs
#12752: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12714:
+^I^Icase 89:$
ERROR: code indent should never use tabs
#12753: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12715:
+^I^I return 355; /* wsr.mmid */$
ERROR: code indent should never use tabs
#12754: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12716:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#12755: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12717:
+^I^I return 397; /* wsr.rasid */$
ERROR: code indent should never use tabs
#12756: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12718:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#12757: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12719:
+^I^I return 400; /* wsr.itlbcfg */$
ERROR: code indent should never use tabs
#12758: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12720:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#12759: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12721:
+^I^I return 403; /* wsr.dtlbcfg */$
ERROR: code indent should never use tabs
#12760: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12722:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#12761: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12723:
+^I^I return 339; /* wsr.ibreakenable */$
ERROR: code indent should never use tabs
#12762: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12724:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#12763: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12725:
+^I^I return 351; /* wsr.ddr */$
ERROR: code indent should never use tabs
#12764: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12726:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#12765: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12727:
+^I^I return 333; /* wsr.ibreaka0 */$
ERROR: code indent should never use tabs
#12766: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12728:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#12767: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12729:
+^I^I return 336; /* wsr.ibreaka1 */$
ERROR: code indent should never use tabs
#12768: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12730:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#12769: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12731:
+^I^I return 321; /* wsr.dbreaka0 */$
ERROR: code indent should never use tabs
#12770: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12732:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#12771: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12733:
+^I^I return 327; /* wsr.dbreaka1 */$
ERROR: code indent should never use tabs
#12772: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12734:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#12773: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12735:
+^I^I return 324; /* wsr.dbreakc0 */$
ERROR: code indent should never use tabs
#12774: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12736:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#12775: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12737:
+^I^I return 330; /* wsr.dbreakc1 */$
ERROR: code indent should never use tabs
#12776: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12738:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#12777: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12739:
+^I^I return 142; /* wsr.epc1 */$
ERROR: code indent should never use tabs
#12778: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12740:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#12779: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12741:
+^I^I return 148; /* wsr.epc2 */$
ERROR: code indent should never use tabs
#12780: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12742:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#12781: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12743:
+^I^I return 154; /* wsr.epc3 */$
ERROR: code indent should never use tabs
#12782: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12744:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#12783: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12745:
+^I^I return 160; /* wsr.epc4 */$
ERROR: code indent should never use tabs
#12784: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12746:
+^I^Icase 181:$
ERROR: code indent should never use tabs
#12785: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12747:
+^I^I return 166; /* wsr.epc5 */$
ERROR: code indent should never use tabs
#12786: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12748:
+^I^Icase 182:$
ERROR: code indent should never use tabs
#12787: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12749:
+^I^I return 172; /* wsr.epc6 */$
ERROR: code indent should never use tabs
#12788: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12750:
+^I^Icase 183:$
ERROR: code indent should never use tabs
#12789: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12751:
+^I^I return 178; /* wsr.epc7 */$
ERROR: code indent should never use tabs
#12790: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12752:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#12791: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12753:
+^I^I return 205; /* wsr.depc */$
ERROR: code indent should never use tabs
#12792: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12754:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#12793: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12755:
+^I^I return 184; /* wsr.eps2 */$
ERROR: code indent should never use tabs
#12794: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12756:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#12795: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12757:
+^I^I return 187; /* wsr.eps3 */$
ERROR: code indent should never use tabs
#12796: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12758:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#12797: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12759:
+^I^I return 190; /* wsr.eps4 */$
ERROR: code indent should never use tabs
#12798: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12760:
+^I^Icase 197:$
ERROR: code indent should never use tabs
#12799: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12761:
+^I^I return 193; /* wsr.eps5 */$
ERROR: code indent should never use tabs
#12800: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12762:
+^I^Icase 198:$
ERROR: code indent should never use tabs
#12801: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12763:
+^I^I return 196; /* wsr.eps6 */$
ERROR: code indent should never use tabs
#12802: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12764:
+^I^Icase 199:$
ERROR: code indent should never use tabs
#12803: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12765:
+^I^I return 199; /* wsr.eps7 */$
ERROR: code indent should never use tabs
#12804: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12766:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#12805: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12767:
+^I^I return 145; /* wsr.excsave1 */$
ERROR: code indent should never use tabs
#12806: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12768:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#12807: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12769:
+^I^I return 151; /* wsr.excsave2 */$
ERROR: code indent should never use tabs
#12808: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12770:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#12809: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12771:
+^I^I return 157; /* wsr.excsave3 */$
ERROR: code indent should never use tabs
#12810: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12772:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#12811: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12773:
+^I^I return 163; /* wsr.excsave4 */$
ERROR: code indent should never use tabs
#12812: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12774:
+^I^Icase 213:$
ERROR: code indent should never use tabs
#12813: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12775:
+^I^I return 169; /* wsr.excsave5 */$
ERROR: code indent should never use tabs
#12814: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12776:
+^I^Icase 214:$
ERROR: code indent should never use tabs
#12815: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12777:
+^I^I return 175; /* wsr.excsave6 */$
ERROR: code indent should never use tabs
#12816: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12778:
+^I^Icase 215:$
ERROR: code indent should never use tabs
#12817: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12779:
+^I^I return 181; /* wsr.excsave7 */$
ERROR: code indent should never use tabs
#12818: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12780:
+^I^Icase 224:$
ERROR: code indent should never use tabs
#12819: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12781:
+^I^I return 419; /* wsr.cpenable */$
ERROR: code indent should never use tabs
#12820: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12782:
+^I^Icase 226:$
ERROR: code indent should never use tabs
#12821: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12783:
+^I^I return 313; /* wsr.intset */$
ERROR: code indent should never use tabs
#12822: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12784:
+^I^Icase 227:$
ERROR: code indent should never use tabs
#12823: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12785:
+^I^I return 314; /* wsr.intclear */$
ERROR: code indent should never use tabs
#12824: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12786:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#12825: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12787:
+^I^I return 316; /* wsr.intenable */$
ERROR: code indent should never use tabs
#12826: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12788:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#12827: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12789:
+^I^I return 139; /* wsr.ps */$
ERROR: code indent should never use tabs
#12828: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12790:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#12829: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12791:
+^I^I return 218; /* wsr.vecbase */$
ERROR: code indent should never use tabs
#12830: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12792:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#12831: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12793:
+^I^I return 208; /* wsr.exccause */$
ERROR: code indent should never use tabs
#12832: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12794:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#12833: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12795:
+^I^I return 342; /* wsr.debugcause */$
ERROR: code indent should never use tabs
#12834: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12796:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#12835: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12797:
+^I^I return 357; /* wsr.ccount */$
ERROR: code indent should never use tabs
#12836: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12798:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#12837: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12799:
+^I^I return 345; /* wsr.icount */$
ERROR: code indent should never use tabs
#12838: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12800:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#12839: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12801:
+^I^I return 348; /* wsr.icountlevel */$
ERROR: code indent should never use tabs
#12840: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12802:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#12841: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12803:
+^I^I return 202; /* wsr.excvaddr */$
ERROR: code indent should never use tabs
#12842: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12804:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#12843: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12805:
+^I^I return 360; /* wsr.ccompare0 */$
ERROR: code indent should never use tabs
#12844: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12806:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#12845: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12807:
+^I^I return 363; /* wsr.ccompare1 */$
ERROR: code indent should never use tabs
#12846: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12808:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#12847: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12809:
+^I^I return 366; /* wsr.ccompare2 */$
ERROR: code indent should never use tabs
#12848: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12810:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#12849: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12811:
+^I^I return 211; /* wsr.misc0 */$
ERROR: code indent should never use tabs
#12850: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12812:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#12851: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12813:
+^I^I return 214; /* wsr.misc1 */$
ERROR: code indent should never use tabs
#12852: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12814:
+^I^I}$
ERROR: code indent should never use tabs
#12853: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12815:
+^I break;$
ERROR: code indent should never use tabs
#12854: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12816:
+^I case 2:$
ERROR: code indent should never use tabs
#12855: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12817:
+^I return 428; /* sext */$
ERROR: code indent should never use tabs
#12856: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12818:
+^I case 3:$
ERROR: code indent should never use tabs
#12857: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12819:
+^I return 421; /* clamps */$
ERROR: code indent should never use tabs
#12858: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12820:
+^I case 4:$
ERROR: code indent should never use tabs
#12859: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12821:
+^I return 422; /* min */$
ERROR: code indent should never use tabs
#12860: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12822:
+^I case 5:$
ERROR: code indent should never use tabs
#12861: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12823:
+^I return 423; /* max */$
ERROR: code indent should never use tabs
#12862: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12824:
+^I case 6:$
ERROR: code indent should never use tabs
#12863: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12825:
+^I return 424; /* minu */$
ERROR: code indent should never use tabs
#12864: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12826:
+^I case 7:$
ERROR: code indent should never use tabs
#12865: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12827:
+^I return 425; /* maxu */$
ERROR: code indent should never use tabs
#12866: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12828:
+^I case 8:$
ERROR: code indent should never use tabs
#12867: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12829:
+^I return 91; /* moveqz */$
ERROR: code indent should never use tabs
#12868: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12830:
+^I case 9:$
ERROR: code indent should never use tabs
#12869: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12831:
+^I return 92; /* movnez */$
ERROR: code indent should never use tabs
#12870: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12832:
+^I case 10:$
ERROR: code indent should never use tabs
#12871: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12833:
+^I return 93; /* movltz */$
ERROR: code indent should never use tabs
#12872: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12834:
+^I case 11:$
ERROR: code indent should never use tabs
#12873: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12835:
+^I return 94; /* movgez */$
ERROR: code indent should never use tabs
#12874: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12836:
+^I case 14:$
ERROR: code indent should never use tabs
#12875: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12837:
+^I switch (Field_st_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12875: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12837:
+ switch (Field_st_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12876: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12838:
+^I^I{$
ERROR: code indent should never use tabs
#12877: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12839:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#12878: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12840:
+^I^I return 440; /* rur.expstate */$
ERROR: code indent should never use tabs
#12879: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12841:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#12880: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12842:
+^I^I return 37; /* rur.threadptr */$
ERROR: code indent should never use tabs
#12881: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12843:
+^I^I}$
ERROR: code indent should never use tabs
#12882: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12844:
+^I break;$
ERROR: code indent should never use tabs
#12883: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12845:
+^I case 15:$
ERROR: code indent should never use tabs
#12884: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12846:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12884: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12846:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12885: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12847:
+^I^I{$
ERROR: code indent should never use tabs
#12886: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12848:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#12887: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12849:
+^I^I return 441; /* wur.expstate */$
ERROR: code indent should never use tabs
#12888: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12850:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#12889: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12851:
+^I^I return 38; /* wur.threadptr */$
ERROR: code indent should never use tabs
#12890: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12852:
+^I^I}$
ERROR: code indent should never use tabs
#12891: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12853:
+^I break;$
ERROR: code indent should never use tabs
#12892: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12854:
+^I }$
ERROR: code indent should never use tabs
#12893: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12855:
+^I break;$
ERROR: code indent should never use tabs
#12894: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12856:
+^Icase 4:$
ERROR: code indent should never use tabs
#12895: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12857:
+^Icase 5:$
ERROR: code indent should never use tabs
#12896: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12858:
+^I return 78; /* extui */$
ERROR: code indent should never use tabs
#12897: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12859:
+^Icase 9:$
ERROR: code indent should never use tabs
#12898: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12860:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12898: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12860:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12899: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12861:
+^I {$
ERROR: code indent should never use tabs
#12900: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12862:
+^I case 0:$
ERROR: code indent should never use tabs
#12901: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12863:
+^I return 18; /* l32e */$
ERROR: code indent should never use tabs
#12902: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12864:
+^I case 4:$
ERROR: code indent should never use tabs
#12903: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12865:
+^I return 19; /* s32e */$
ERROR: code indent should never use tabs
#12904: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12866:
+^I }$
ERROR: code indent should never use tabs
#12905: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12867:
+^I break;$
ERROR: code indent should never use tabs
#12906: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12868:
+^I}$
ERROR: that open brace { should be on the previous line
#12907: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12869:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12908: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12870:
+^I{$
ERROR: code indent should never use tabs
#12909: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12871:
+^Icase 0:$
ERROR: code indent should never use tabs
#12910: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12872:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#12910: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12872:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#12911: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12873:
+^I Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#12912: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12874:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#12913: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12875:
+^I return 442; /* read_impwire */$
ERROR: code indent should never use tabs
#12914: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12876:
+^I break;$
ERROR: code indent should never use tabs
#12915: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12877:
+^Icase 1:$
ERROR: code indent should never use tabs
#12916: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12878:
+^I if (Field_s3to1_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#12916: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12878:
+ if (Field_s3to1_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#12917: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12879:
+^I Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#12918: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12880:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#12919: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12881:
+^I return 443; /* setb_expstate */$
ERROR: code indent should never use tabs
#12920: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12882:
+^I if (Field_s3to1_Slot_inst_get (insn) == 1 &&$
ERROR: braces {} are necessary for all arms of this statement
#12920: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12882:
+ if (Field_s3to1_Slot_inst_get (insn) == 1 &&
[...]
ERROR: code indent should never use tabs
#12921: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12883:
+^I Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#12922: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12884:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#12923: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12885:
+^I return 444; /* clrb_expstate */$
ERROR: code indent should never use tabs
#12924: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12886:
+^I break;$
ERROR: code indent should never use tabs
#12925: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12887:
+^Icase 2:$
ERROR: code indent should never use tabs
#12926: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12888:
+^I if (Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#12926: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12888:
+ if (Field_op2_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#12927: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12889:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#12928: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12890:
+^I return 445; /* wrmsk_expstate */$
ERROR: code indent should never use tabs
#12929: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12891:
+^I break;$
ERROR: code indent should never use tabs
#12930: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12892:
+^I}$
ERROR: that open brace { should be on the previous line
#12935: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12897:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12936: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12898:
+^I{$
ERROR: code indent should never use tabs
#12937: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12899:
+^Icase 0:$
ERROR: code indent should never use tabs
#12938: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12900:
+^I return 86; /* l8ui */$
ERROR: code indent should never use tabs
#12939: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12901:
+^Icase 1:$
ERROR: code indent should never use tabs
#12940: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12902:
+^I return 82; /* l16ui */$
ERROR: code indent should never use tabs
#12941: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12903:
+^Icase 2:$
ERROR: code indent should never use tabs
#12942: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12904:
+^I return 84; /* l32i */$
ERROR: code indent should never use tabs
#12943: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12905:
+^Icase 4:$
ERROR: code indent should never use tabs
#12944: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12906:
+^I return 101; /* s8i */$
ERROR: code indent should never use tabs
#12945: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12907:
+^Icase 5:$
ERROR: code indent should never use tabs
#12946: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12908:
+^I return 99; /* s16i */$
ERROR: code indent should never use tabs
#12947: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12909:
+^Icase 6:$
ERROR: code indent should never use tabs
#12948: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12910:
+^I return 100; /* s32i */$
ERROR: code indent should never use tabs
#12949: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12911:
+^Icase 7:$
ERROR: code indent should never use tabs
#12950: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12912:
+^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12950: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12912:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12951: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12913:
+^I {$
ERROR: code indent should never use tabs
#12952: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12914:
+^I case 0:$
ERROR: code indent should never use tabs
#12953: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12915:
+^I return 384; /* dpfr */$
ERROR: code indent should never use tabs
#12954: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12916:
+^I case 1:$
ERROR: code indent should never use tabs
#12955: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12917:
+^I return 385; /* dpfw */$
ERROR: code indent should never use tabs
#12956: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12918:
+^I case 2:$
ERROR: code indent should never use tabs
#12957: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12919:
+^I return 386; /* dpfro */$
ERROR: code indent should never use tabs
#12958: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12920:
+^I case 3:$
ERROR: code indent should never use tabs
#12959: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12921:
+^I return 387; /* dpfwo */$
ERROR: code indent should never use tabs
#12960: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12922:
+^I case 4:$
ERROR: code indent should never use tabs
#12961: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12923:
+^I return 378; /* dhwb */$
ERROR: code indent should never use tabs
#12962: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12924:
+^I case 5:$
ERROR: code indent should never use tabs
#12963: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12925:
+^I return 379; /* dhwbi */$
ERROR: code indent should never use tabs
#12964: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12926:
+^I case 6:$
ERROR: code indent should never use tabs
#12965: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12927:
+^I return 382; /* dhi */$
ERROR: code indent should never use tabs
#12966: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12928:
+^I case 7:$
ERROR: code indent should never use tabs
#12967: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12929:
+^I return 383; /* dii */$
ERROR: code indent should never use tabs
#12968: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12930:
+^I case 8:$
ERROR: code indent should never use tabs
#12969: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12931:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12969: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12931:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12970: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12932:
+^I^I{$
ERROR: code indent should never use tabs
#12971: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12933:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12972: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12934:
+^I^I return 388; /* dpfl */$
ERROR: code indent should never use tabs
#12973: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12935:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12974: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12936:
+^I^I return 389; /* dhu */$
ERROR: code indent should never use tabs
#12975: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12937:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12976: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12938:
+^I^I return 390; /* diu */$
ERROR: code indent should never use tabs
#12977: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12939:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#12978: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12940:
+^I^I return 380; /* diwb */$
ERROR: code indent should never use tabs
#12979: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12941:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#12980: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12942:
+^I^I return 381; /* diwbi */$
ERROR: code indent should never use tabs
#12981: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12943:
+^I^I}$
ERROR: code indent should never use tabs
#12982: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12944:
+^I break;$
ERROR: code indent should never use tabs
#12983: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12945:
+^I case 12:$
ERROR: code indent should never use tabs
#12984: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12946:
+^I return 368; /* ipf */$
ERROR: code indent should never use tabs
#12985: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12947:
+^I case 13:$
ERROR: code indent should never use tabs
#12986: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12948:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#12986: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12948:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#12987: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12949:
+^I^I{$
ERROR: code indent should never use tabs
#12988: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12950:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#12989: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12951:
+^I^I return 370; /* ipfl */$
ERROR: code indent should never use tabs
#12990: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12952:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#12991: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12953:
+^I^I return 371; /* ihu */$
ERROR: code indent should never use tabs
#12992: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12954:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#12993: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12955:
+^I^I return 372; /* iiu */$
ERROR: code indent should never use tabs
#12994: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12956:
+^I^I}$
ERROR: code indent should never use tabs
#12995: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12957:
+^I break;$
ERROR: code indent should never use tabs
#12996: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12958:
+^I case 14:$
ERROR: code indent should never use tabs
#12997: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12959:
+^I return 369; /* ihi */$
ERROR: code indent should never use tabs
#12998: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12960:
+^I case 15:$
ERROR: code indent should never use tabs
#12999: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12961:
+^I return 373; /* iii */$
ERROR: code indent should never use tabs
#13000: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12962:
+^I }$
ERROR: code indent should never use tabs
#13001: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12963:
+^I break;$
ERROR: code indent should never use tabs
#13002: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12964:
+^Icase 9:$
ERROR: code indent should never use tabs
#13003: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12965:
+^I return 83; /* l16si */$
ERROR: code indent should never use tabs
#13004: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12966:
+^Icase 10:$
ERROR: code indent should never use tabs
#13005: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12967:
+^I return 90; /* movi */$
ERROR: code indent should never use tabs
#13006: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12968:
+^Icase 11:$
ERROR: code indent should never use tabs
#13007: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12969:
+^I return 429; /* l32ai */$
ERROR: code indent should never use tabs
#13008: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12970:
+^Icase 12:$
ERROR: code indent should never use tabs
#13009: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12971:
+^I return 39; /* addi */$
ERROR: code indent should never use tabs
#13010: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12972:
+^Icase 13:$
ERROR: code indent should never use tabs
#13011: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12973:
+^I return 40; /* addmi */$
ERROR: code indent should never use tabs
#13012: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12974:
+^Icase 14:$
ERROR: code indent should never use tabs
#13013: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12975:
+^I return 431; /* s32c1i */$
ERROR: code indent should never use tabs
#13014: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12976:
+^Icase 15:$
ERROR: code indent should never use tabs
#13015: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12977:
+^I return 430; /* s32ri */$
ERROR: code indent should never use tabs
#13016: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12978:
+^I}$
ERROR: that open brace { should be on the previous line
#13019: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12981:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13020: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12982:
+^I{$
ERROR: code indent should never use tabs
#13021: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12983:
+^Icase 0:$
ERROR: code indent should never use tabs
#13022: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12984:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13022: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12984:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13023: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12985:
+^I {$
ERROR: code indent should never use tabs
#13024: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12986:
+^I case 8:$
ERROR: code indent should never use tabs
#13025: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12987:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13025: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12987:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13026: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12988:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13027: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12989:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13028: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12990:
+^I^Ireturn 281; /* mula.dd.ll.ldinc */$
ERROR: code indent should never use tabs
#13029: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12991:
+^I break;$
ERROR: code indent should never use tabs
#13030: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12992:
+^I case 9:$
ERROR: code indent should never use tabs
#13031: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12993:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13031: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12993:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13032: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12994:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13033: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12995:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13034: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12996:
+^I^Ireturn 283; /* mula.dd.hl.ldinc */$
ERROR: code indent should never use tabs
#13035: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12997:
+^I break;$
ERROR: code indent should never use tabs
#13036: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12998:
+^I case 10:$
ERROR: code indent should never use tabs
#13037: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12999:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13037: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12999:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13038: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13000:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13039: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13001:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13040: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13002:
+^I^Ireturn 285; /* mula.dd.lh.ldinc */$
ERROR: code indent should never use tabs
#13041: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13003:
+^I break;$
ERROR: code indent should never use tabs
#13042: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13004:
+^I case 11:$
ERROR: code indent should never use tabs
#13043: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13005:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13043: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13005:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13044: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13006:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13045: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13007:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13046: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13008:
+^I^Ireturn 287; /* mula.dd.hh.ldinc */$
ERROR: code indent should never use tabs
#13047: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13009:
+^I break;$
ERROR: code indent should never use tabs
#13048: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13010:
+^I }$
ERROR: code indent should never use tabs
#13049: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13011:
+^I break;$
ERROR: code indent should never use tabs
#13050: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13012:
+^Icase 1:$
ERROR: code indent should never use tabs
#13051: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13013:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13051: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13013:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13052: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13014:
+^I {$
ERROR: code indent should never use tabs
#13053: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13015:
+^I case 8:$
ERROR: code indent should never use tabs
#13054: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13016:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13054: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13016:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13055: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13017:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13056: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13018:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13057: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13019:
+^I^Ireturn 280; /* mula.dd.ll.lddec */$
ERROR: code indent should never use tabs
#13058: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13020:
+^I break;$
ERROR: code indent should never use tabs
#13059: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13021:
+^I case 9:$
ERROR: code indent should never use tabs
#13060: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13022:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13060: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13022:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13061: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13023:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13062: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13024:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13063: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13025:
+^I^Ireturn 282; /* mula.dd.hl.lddec */$
ERROR: code indent should never use tabs
#13064: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13026:
+^I break;$
ERROR: code indent should never use tabs
#13065: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13027:
+^I case 10:$
ERROR: code indent should never use tabs
#13066: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13028:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13066: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13028:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13067: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13029:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13068: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13030:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13069: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13031:
+^I^Ireturn 284; /* mula.dd.lh.lddec */$
ERROR: code indent should never use tabs
#13070: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13032:
+^I break;$
ERROR: code indent should never use tabs
#13071: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13033:
+^I case 11:$
ERROR: code indent should never use tabs
#13072: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13034:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13072: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13034:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13073: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13035:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13074: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13036:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13075: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13037:
+^I^Ireturn 286; /* mula.dd.hh.lddec */$
ERROR: code indent should never use tabs
#13076: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13038:
+^I break;$
ERROR: code indent should never use tabs
#13077: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13039:
+^I }$
ERROR: code indent should never use tabs
#13078: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13040:
+^I break;$
ERROR: code indent should never use tabs
#13079: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13041:
+^Icase 2:$
ERROR: code indent should never use tabs
#13080: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13042:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13080: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13042:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13081: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13043:
+^I {$
ERROR: code indent should never use tabs
#13082: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13044:
+^I case 4:$
ERROR: code indent should never use tabs
#13083: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13045:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13083: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13045:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13084: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13046:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13085: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13047:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13086: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13048:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13087: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13049:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13088: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13050:
+^I^Ireturn 236; /* mul.dd.ll */$
ERROR: code indent should never use tabs
#13089: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13051:
+^I break;$
ERROR: code indent should never use tabs
#13090: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13052:
+^I case 5:$
ERROR: code indent should never use tabs
#13091: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13053:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13091: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13053:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13092: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13054:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13093: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13055:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13094: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13056:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13095: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13057:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13096: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13058:
+^I^Ireturn 237; /* mul.dd.hl */$
ERROR: code indent should never use tabs
#13097: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13059:
+^I break;$
ERROR: code indent should never use tabs
#13098: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13060:
+^I case 6:$
ERROR: code indent should never use tabs
#13099: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13061:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13099: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13061:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13100: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13062:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13101: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13063:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13102: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13064:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13103: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13065:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13104: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13066:
+^I^Ireturn 238; /* mul.dd.lh */$
ERROR: code indent should never use tabs
#13105: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13067:
+^I break;$
ERROR: code indent should never use tabs
#13106: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13068:
+^I case 7:$
ERROR: code indent should never use tabs
#13107: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13069:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13107: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13069:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13108: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13070:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13109: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13071:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13110: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13072:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13111: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13073:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13112: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13074:
+^I^Ireturn 239; /* mul.dd.hh */$
ERROR: code indent should never use tabs
#13113: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13075:
+^I break;$
ERROR: code indent should never use tabs
#13114: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13076:
+^I case 8:$
ERROR: code indent should never use tabs
#13115: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13077:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13115: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13077:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13116: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13078:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13117: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13079:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13118: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13080:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13119: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13081:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13120: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13082:
+^I^Ireturn 264; /* mula.dd.ll */$
ERROR: code indent should never use tabs
#13121: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13083:
+^I break;$
ERROR: code indent should never use tabs
#13122: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13084:
+^I case 9:$
ERROR: code indent should never use tabs
#13123: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13085:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13123: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13085:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13124: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13086:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13125: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13087:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13126: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13088:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13127: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13089:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13128: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13090:
+^I^Ireturn 265; /* mula.dd.hl */$
ERROR: code indent should never use tabs
#13129: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13091:
+^I break;$
ERROR: code indent should never use tabs
#13130: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13092:
+^I case 10:$
ERROR: code indent should never use tabs
#13131: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13093:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13131: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13093:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13132: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13094:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13133: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13095:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13134: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13096:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13135: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13097:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13136: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13098:
+^I^Ireturn 266; /* mula.dd.lh */$
ERROR: code indent should never use tabs
#13137: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13099:
+^I break;$
ERROR: code indent should never use tabs
#13138: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13100:
+^I case 11:$
ERROR: code indent should never use tabs
#13139: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13101:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13139: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13101:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13140: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13102:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13141: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13103:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13142: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13104:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13143: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13105:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13144: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13106:
+^I^Ireturn 267; /* mula.dd.hh */$
ERROR: code indent should never use tabs
#13145: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13107:
+^I break;$
ERROR: code indent should never use tabs
#13146: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13108:
+^I case 12:$
ERROR: code indent should never use tabs
#13147: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13109:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13147: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13109:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13148: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13110:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13149: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13111:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13150: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13112:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13151: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13113:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13152: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13114:
+^I^Ireturn 268; /* muls.dd.ll */$
ERROR: code indent should never use tabs
#13153: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13115:
+^I break;$
ERROR: code indent should never use tabs
#13154: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13116:
+^I case 13:$
ERROR: code indent should never use tabs
#13155: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13117:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13155: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13117:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13156: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13118:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13157: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13119:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13158: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13120:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13159: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13121:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13160: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13122:
+^I^Ireturn 269; /* muls.dd.hl */$
ERROR: code indent should never use tabs
#13161: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13123:
+^I break;$
ERROR: code indent should never use tabs
#13162: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13124:
+^I case 14:$
ERROR: code indent should never use tabs
#13163: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13125:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13163: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13125:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13164: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13126:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13165: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13127:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13166: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13128:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13167: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13129:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13168: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13130:
+^I^Ireturn 270; /* muls.dd.lh */$
ERROR: code indent should never use tabs
#13169: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13131:
+^I break;$
ERROR: code indent should never use tabs
#13170: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13132:
+^I case 15:$
ERROR: code indent should never use tabs
#13171: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13133:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13171: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13133:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13172: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13134:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13173: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13135:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13174: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13136:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13175: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13137:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13176: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13138:
+^I^Ireturn 271; /* muls.dd.hh */$
ERROR: code indent should never use tabs
#13177: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13139:
+^I break;$
ERROR: code indent should never use tabs
#13178: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13140:
+^I }$
ERROR: code indent should never use tabs
#13179: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13141:
+^I break;$
ERROR: code indent should never use tabs
#13180: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13142:
+^Icase 3:$
ERROR: code indent should never use tabs
#13181: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13143:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13181: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13143:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13182: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13144:
+^I {$
ERROR: code indent should never use tabs
#13183: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13145:
+^I case 4:$
ERROR: code indent should never use tabs
#13184: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13146:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13184: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13146:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13185: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13147:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13186: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13148:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13187: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13149:
+^I^Ireturn 228; /* mul.ad.ll */$
ERROR: code indent should never use tabs
#13188: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13150:
+^I break;$
ERROR: code indent should never use tabs
#13189: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13151:
+^I case 5:$
ERROR: code indent should never use tabs
#13190: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13152:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13190: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13152:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13191: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13153:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13192: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13154:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13193: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13155:
+^I^Ireturn 229; /* mul.ad.hl */$
ERROR: code indent should never use tabs
#13194: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13156:
+^I break;$
ERROR: code indent should never use tabs
#13195: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13157:
+^I case 6:$
ERROR: code indent should never use tabs
#13196: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13158:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13196: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13158:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13197: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13159:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13198: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13160:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13199: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13161:
+^I^Ireturn 230; /* mul.ad.lh */$
ERROR: code indent should never use tabs
#13200: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13162:
+^I break;$
ERROR: code indent should never use tabs
#13201: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13163:
+^I case 7:$
ERROR: code indent should never use tabs
#13202: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13164:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13202: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13164:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13203: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13165:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13204: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13166:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13205: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13167:
+^I^Ireturn 231; /* mul.ad.hh */$
ERROR: code indent should never use tabs
#13206: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13168:
+^I break;$
ERROR: code indent should never use tabs
#13207: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13169:
+^I case 8:$
ERROR: code indent should never use tabs
#13208: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13170:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13208: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13170:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13209: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13171:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13210: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13172:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13211: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13173:
+^I^Ireturn 248; /* mula.ad.ll */$
ERROR: code indent should never use tabs
#13212: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13174:
+^I break;$
ERROR: code indent should never use tabs
#13213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13175:
+^I case 9:$
ERROR: code indent should never use tabs
#13214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13176:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13176:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13215: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13177:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13216: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13178:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13217: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13179:
+^I^Ireturn 249; /* mula.ad.hl */$
ERROR: code indent should never use tabs
#13218: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13180:
+^I break;$
ERROR: code indent should never use tabs
#13219: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13181:
+^I case 10:$
ERROR: code indent should never use tabs
#13220: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13182:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13220: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13182:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13221: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13183:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13222: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13184:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13223: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13185:
+^I^Ireturn 250; /* mula.ad.lh */$
ERROR: code indent should never use tabs
#13224: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13186:
+^I break;$
ERROR: code indent should never use tabs
#13225: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13187:
+^I case 11:$
ERROR: code indent should never use tabs
#13226: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13188:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13226: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13188:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13227: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13189:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13228: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13190:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13229: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13191:
+^I^Ireturn 251; /* mula.ad.hh */$
ERROR: code indent should never use tabs
#13230: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13192:
+^I break;$
ERROR: code indent should never use tabs
#13231: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13193:
+^I case 12:$
ERROR: code indent should never use tabs
#13232: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13194:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13232: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13194:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13233: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13195:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13234: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13196:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13235: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13197:
+^I^Ireturn 252; /* muls.ad.ll */$
ERROR: code indent should never use tabs
#13236: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13198:
+^I break;$
ERROR: code indent should never use tabs
#13237: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13199:
+^I case 13:$
ERROR: code indent should never use tabs
#13238: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13200:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13238: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13200:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13239: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13201:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13240: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13202:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13241: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13203:
+^I^Ireturn 253; /* muls.ad.hl */$
ERROR: code indent should never use tabs
#13242: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13204:
+^I break;$
ERROR: code indent should never use tabs
#13243: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13205:
+^I case 14:$
ERROR: code indent should never use tabs
#13244: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13206:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13244: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13206:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13245: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13207:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13246: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13208:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13247: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13209:
+^I^Ireturn 254; /* muls.ad.lh */$
ERROR: code indent should never use tabs
#13248: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13210:
+^I break;$
ERROR: code indent should never use tabs
#13249: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13211:
+^I case 15:$
ERROR: code indent should never use tabs
#13250: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13212:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13250: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13212:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13251: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13213:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13252: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13214:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13253: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13215:
+^I^Ireturn 255; /* muls.ad.hh */$
ERROR: code indent should never use tabs
#13254: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13216:
+^I break;$
ERROR: code indent should never use tabs
#13255: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13217:
+^I }$
ERROR: code indent should never use tabs
#13256: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13218:
+^I break;$
ERROR: code indent should never use tabs
#13257: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13219:
+^Icase 4:$
ERROR: code indent should never use tabs
#13258: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13220:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13258: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13220:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13259: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13221:
+^I {$
ERROR: code indent should never use tabs
#13260: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13222:
+^I case 8:$
ERROR: code indent should never use tabs
#13261: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13223:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13261: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13223:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13262: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13224:
+^I^Ireturn 273; /* mula.da.ll.ldinc */$
ERROR: code indent should never use tabs
#13263: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13225:
+^I break;$
ERROR: code indent should never use tabs
#13264: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13226:
+^I case 9:$
ERROR: code indent should never use tabs
#13265: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13227:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13265: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13227:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13266: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13228:
+^I^Ireturn 275; /* mula.da.hl.ldinc */$
ERROR: code indent should never use tabs
#13267: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13229:
+^I break;$
ERROR: code indent should never use tabs
#13268: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13230:
+^I case 10:$
ERROR: code indent should never use tabs
#13269: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13231:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13269: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13231:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13270: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13232:
+^I^Ireturn 277; /* mula.da.lh.ldinc */$
ERROR: code indent should never use tabs
#13271: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13233:
+^I break;$
ERROR: code indent should never use tabs
#13272: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13234:
+^I case 11:$
ERROR: code indent should never use tabs
#13273: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13235:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13273: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13235:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13274: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13236:
+^I^Ireturn 279; /* mula.da.hh.ldinc */$
ERROR: code indent should never use tabs
#13275: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13237:
+^I break;$
ERROR: code indent should never use tabs
#13276: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13238:
+^I }$
ERROR: code indent should never use tabs
#13277: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13239:
+^I break;$
ERROR: code indent should never use tabs
#13278: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13240:
+^Icase 5:$
ERROR: code indent should never use tabs
#13279: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13241:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13279: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13241:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13280: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13242:
+^I {$
ERROR: code indent should never use tabs
#13281: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13243:
+^I case 8:$
ERROR: code indent should never use tabs
#13282: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13244:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13282: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13244:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13283: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13245:
+^I^Ireturn 272; /* mula.da.ll.lddec */$
ERROR: code indent should never use tabs
#13284: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13246:
+^I break;$
ERROR: code indent should never use tabs
#13285: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13247:
+^I case 9:$
ERROR: code indent should never use tabs
#13286: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13248:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13286: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13248:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13287: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13249:
+^I^Ireturn 274; /* mula.da.hl.lddec */$
ERROR: code indent should never use tabs
#13288: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13250:
+^I break;$
ERROR: code indent should never use tabs
#13289: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13251:
+^I case 10:$
ERROR: code indent should never use tabs
#13290: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13252:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13290: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13252:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13291: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13253:
+^I^Ireturn 276; /* mula.da.lh.lddec */$
ERROR: code indent should never use tabs
#13292: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13254:
+^I break;$
ERROR: code indent should never use tabs
#13293: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13255:
+^I case 11:$
ERROR: code indent should never use tabs
#13294: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13256:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13294: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13256:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13295: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13257:
+^I^Ireturn 278; /* mula.da.hh.lddec */$
ERROR: code indent should never use tabs
#13296: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13258:
+^I break;$
ERROR: code indent should never use tabs
#13297: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13259:
+^I }$
ERROR: code indent should never use tabs
#13298: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13260:
+^I break;$
ERROR: code indent should never use tabs
#13299: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13261:
+^Icase 6:$
ERROR: code indent should never use tabs
#13300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13262:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13262:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13263:
+^I {$
ERROR: code indent should never use tabs
#13302: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13264:
+^I case 4:$
ERROR: code indent should never use tabs
#13303: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13265:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13303: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13265:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13304: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13266:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13305: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13267:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13306: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13268:
+^I^Ireturn 232; /* mul.da.ll */$
ERROR: code indent should never use tabs
#13307: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13269:
+^I break;$
ERROR: code indent should never use tabs
#13308: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13270:
+^I case 5:$
ERROR: code indent should never use tabs
#13309: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13271:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13309: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13271:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13310: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13272:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13311: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13273:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13312: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13274:
+^I^Ireturn 233; /* mul.da.hl */$
ERROR: code indent should never use tabs
#13313: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13275:
+^I break;$
ERROR: code indent should never use tabs
#13314: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13276:
+^I case 6:$
ERROR: code indent should never use tabs
#13315: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13277:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13315: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13277:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13316: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13278:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13317: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13279:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13318: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13280:
+^I^Ireturn 234; /* mul.da.lh */$
ERROR: code indent should never use tabs
#13319: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13281:
+^I break;$
ERROR: code indent should never use tabs
#13320: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13282:
+^I case 7:$
ERROR: code indent should never use tabs
#13321: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13283:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13321: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13283:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13322: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13284:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13323: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13285:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13324: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13286:
+^I^Ireturn 235; /* mul.da.hh */$
ERROR: code indent should never use tabs
#13325: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13287:
+^I break;$
ERROR: code indent should never use tabs
#13326: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13288:
+^I case 8:$
ERROR: code indent should never use tabs
#13327: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13289:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13327: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13289:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13328: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13290:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13329: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13291:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13330: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13292:
+^I^Ireturn 256; /* mula.da.ll */$
ERROR: code indent should never use tabs
#13331: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13293:
+^I break;$
ERROR: code indent should never use tabs
#13332: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13294:
+^I case 9:$
ERROR: code indent should never use tabs
#13333: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13295:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13333: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13295:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13334: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13296:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13335: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13297:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13336: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13298:
+^I^Ireturn 257; /* mula.da.hl */$
ERROR: code indent should never use tabs
#13337: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13299:
+^I break;$
ERROR: code indent should never use tabs
#13338: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13300:
+^I case 10:$
ERROR: code indent should never use tabs
#13339: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13301:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13339: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13301:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13340: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13302:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13341: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13303:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13342: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13304:
+^I^Ireturn 258; /* mula.da.lh */$
ERROR: code indent should never use tabs
#13343: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13305:
+^I break;$
ERROR: code indent should never use tabs
#13344: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13306:
+^I case 11:$
ERROR: code indent should never use tabs
#13345: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13307:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13345: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13307:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13346: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13308:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13347: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13309:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13348: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13310:
+^I^Ireturn 259; /* mula.da.hh */$
ERROR: code indent should never use tabs
#13349: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13311:
+^I break;$
ERROR: code indent should never use tabs
#13350: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13312:
+^I case 12:$
ERROR: code indent should never use tabs
#13351: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13313:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13351: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13313:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13352: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13314:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13315:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13354: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13316:
+^I^Ireturn 260; /* muls.da.ll */$
ERROR: code indent should never use tabs
#13355: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13317:
+^I break;$
ERROR: code indent should never use tabs
#13356: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13318:
+^I case 13:$
ERROR: code indent should never use tabs
#13357: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13319:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13357: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13319:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13358: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13320:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13359: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13321:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13360: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13322:
+^I^Ireturn 261; /* muls.da.hl */$
ERROR: code indent should never use tabs
#13361: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13323:
+^I break;$
ERROR: code indent should never use tabs
#13362: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13324:
+^I case 14:$
ERROR: code indent should never use tabs
#13363: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13325:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13363: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13325:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13364: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13326:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13365: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13327:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13366: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13328:
+^I^Ireturn 262; /* muls.da.lh */$
ERROR: code indent should never use tabs
#13367: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13329:
+^I break;$
ERROR: code indent should never use tabs
#13368: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13330:
+^I case 15:$
ERROR: code indent should never use tabs
#13369: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13331:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13369: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13331:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13370: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13332:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13371: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13333:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13372: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13334:
+^I^Ireturn 263; /* muls.da.hh */$
ERROR: code indent should never use tabs
#13373: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13335:
+^I break;$
ERROR: code indent should never use tabs
#13374: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13336:
+^I }$
ERROR: code indent should never use tabs
#13375: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13337:
+^I break;$
ERROR: code indent should never use tabs
#13376: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13338:
+^Icase 7:$
ERROR: code indent should never use tabs
#13377: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13339:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13377: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13339:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13378: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13340:
+^I {$
ERROR: code indent should never use tabs
#13379: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13341:
+^I case 0:$
ERROR: code indent should never use tabs
#13380: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13342:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13380: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13342:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13381: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13343:
+^I^Ireturn 224; /* umul.aa.ll */$
ERROR: code indent should never use tabs
#13382: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13344:
+^I break;$
ERROR: code indent should never use tabs
#13383: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13345:
+^I case 1:$
ERROR: code indent should never use tabs
#13384: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13346:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13384: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13346:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13385: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13347:
+^I^Ireturn 225; /* umul.aa.hl */$
ERROR: code indent should never use tabs
#13386: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13348:
+^I break;$
ERROR: code indent should never use tabs
#13387: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13349:
+^I case 2:$
ERROR: code indent should never use tabs
#13388: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13350:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13388: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13350:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13389: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13351:
+^I^Ireturn 226; /* umul.aa.lh */$
ERROR: code indent should never use tabs
#13390: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13352:
+^I break;$
ERROR: code indent should never use tabs
#13391: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13353:
+^I case 3:$
ERROR: code indent should never use tabs
#13392: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13354:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13392: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13354:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13393: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13355:
+^I^Ireturn 227; /* umul.aa.hh */$
ERROR: code indent should never use tabs
#13394: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13356:
+^I break;$
ERROR: code indent should never use tabs
#13395: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13357:
+^I case 4:$
ERROR: code indent should never use tabs
#13396: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13358:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13396: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13358:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13397: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13359:
+^I^Ireturn 220; /* mul.aa.ll */$
ERROR: code indent should never use tabs
#13398: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13360:
+^I break;$
ERROR: code indent should never use tabs
#13399: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13361:
+^I case 5:$
ERROR: code indent should never use tabs
#13400: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13362:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13400: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13362:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13401: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13363:
+^I^Ireturn 221; /* mul.aa.hl */$
ERROR: code indent should never use tabs
#13402: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13364:
+^I break;$
ERROR: code indent should never use tabs
#13403: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13365:
+^I case 6:$
ERROR: code indent should never use tabs
#13404: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13366:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13404: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13366:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13405: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13367:
+^I^Ireturn 222; /* mul.aa.lh */$
ERROR: code indent should never use tabs
#13406: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13368:
+^I break;$
ERROR: code indent should never use tabs
#13407: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13369:
+^I case 7:$
ERROR: code indent should never use tabs
#13408: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13370:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13408: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13370:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13409: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13371:
+^I^Ireturn 223; /* mul.aa.hh */$
ERROR: code indent should never use tabs
#13410: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13372:
+^I break;$
ERROR: code indent should never use tabs
#13411: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13373:
+^I case 8:$
ERROR: code indent should never use tabs
#13412: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13374:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13412: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13374:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13413: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13375:
+^I^Ireturn 240; /* mula.aa.ll */$
ERROR: code indent should never use tabs
#13414: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13376:
+^I break;$
ERROR: code indent should never use tabs
#13415: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13377:
+^I case 9:$
ERROR: code indent should never use tabs
#13416: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13378:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13416: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13378:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13417: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13379:
+^I^Ireturn 241; /* mula.aa.hl */$
ERROR: code indent should never use tabs
#13418: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13380:
+^I break;$
ERROR: code indent should never use tabs
#13419: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13381:
+^I case 10:$
ERROR: code indent should never use tabs
#13420: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13382:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13420: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13382:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13421: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13383:
+^I^Ireturn 242; /* mula.aa.lh */$
ERROR: code indent should never use tabs
#13422: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13384:
+^I break;$
ERROR: code indent should never use tabs
#13423: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13385:
+^I case 11:$
ERROR: code indent should never use tabs
#13424: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13386:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13424: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13386:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13425: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13387:
+^I^Ireturn 243; /* mula.aa.hh */$
ERROR: code indent should never use tabs
#13426: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13388:
+^I break;$
ERROR: code indent should never use tabs
#13427: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13389:
+^I case 12:$
ERROR: code indent should never use tabs
#13428: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13390:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13428: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13390:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13429: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13391:
+^I^Ireturn 244; /* muls.aa.ll */$
ERROR: code indent should never use tabs
#13430: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13392:
+^I break;$
ERROR: code indent should never use tabs
#13431: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13393:
+^I case 13:$
ERROR: code indent should never use tabs
#13432: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13394:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13432: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13394:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13433: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13395:
+^I^Ireturn 245; /* muls.aa.hl */$
ERROR: code indent should never use tabs
#13434: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13396:
+^I break;$
ERROR: code indent should never use tabs
#13435: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13397:
+^I case 14:$
ERROR: code indent should never use tabs
#13436: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13398:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13436: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13398:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13437: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13399:
+^I^Ireturn 246; /* muls.aa.lh */$
ERROR: code indent should never use tabs
#13438: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13400:
+^I break;$
ERROR: code indent should never use tabs
#13439: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13401:
+^I case 15:$
ERROR: code indent should never use tabs
#13440: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13402:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13440: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13402:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13441: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13403:
+^I^Ireturn 247; /* muls.aa.hh */$
ERROR: code indent should never use tabs
#13442: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13404:
+^I break;$
ERROR: code indent should never use tabs
#13443: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13405:
+^I }$
ERROR: code indent should never use tabs
#13444: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13406:
+^I break;$
ERROR: code indent should never use tabs
#13445: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13407:
+^Icase 8:$
ERROR: code indent should never use tabs
#13446: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13408:
+^I if (Field_op1_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13446: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13408:
+ if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13447: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13409:
+^I Field_t_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13448: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13410:
+^I Field_rhi_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13449: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13411:
+^I return 289; /* ldinc */$
ERROR: code indent should never use tabs
#13450: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13412:
+^I break;$
ERROR: code indent should never use tabs
#13451: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13413:
+^Icase 9:$
ERROR: code indent should never use tabs
#13452: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13414:
+^I if (Field_op1_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13452: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13414:
+ if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13453: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13415:
+^I Field_t_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#13454: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13416:
+^I Field_rhi_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13455: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13417:
+^I return 288; /* lddec */$
ERROR: code indent should never use tabs
#13456: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13418:
+^I break;$
ERROR: code indent should never use tabs
#13457: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13419:
+^I}$
ERROR: that open brace { should be on the previous line
#13460: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13422:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13461: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13423:
+^I{$
ERROR: code indent should never use tabs
#13462: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13424:
+^Icase 0:$
ERROR: code indent should never use tabs
#13463: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13425:
+^I return 76; /* call0 */$
ERROR: code indent should never use tabs
#13464: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13426:
+^Icase 1:$
ERROR: code indent should never use tabs
#13465: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13427:
+^I return 7; /* call4 */$
ERROR: code indent should never use tabs
#13466: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13428:
+^Icase 2:$
ERROR: code indent should never use tabs
#13467: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13429:
+^I return 6; /* call8 */$
ERROR: code indent should never use tabs
#13468: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13430:
+^Icase 3:$
ERROR: code indent should never use tabs
#13469: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13431:
+^I return 5; /* call12 */$
ERROR: code indent should never use tabs
#13470: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13432:
+^I}$
ERROR: that open brace { should be on the previous line
#13473: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13435:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13474: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13436:
+^I{$
ERROR: code indent should never use tabs
#13475: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13437:
+^Icase 0:$
ERROR: code indent should never use tabs
#13476: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13438:
+^I return 80; /* j */$
ERROR: code indent should never use tabs
#13477: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13439:
+^Icase 1:$
ERROR: code indent should never use tabs
#13478: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13440:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13478: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13440:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13479: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13441:
+^I {$
ERROR: code indent should never use tabs
#13480: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13442:
+^I case 0:$
ERROR: code indent should never use tabs
#13481: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13443:
+^I return 72; /* beqz */$
ERROR: code indent should never use tabs
#13482: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13444:
+^I case 1:$
ERROR: code indent should never use tabs
#13483: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13445:
+^I return 73; /* bnez */$
ERROR: code indent should never use tabs
#13484: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13446:
+^I case 2:$
ERROR: code indent should never use tabs
#13485: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13447:
+^I return 75; /* bltz */$
ERROR: code indent should never use tabs
#13486: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13448:
+^I case 3:$
ERROR: code indent should never use tabs
#13487: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13449:
+^I return 74; /* bgez */$
ERROR: code indent should never use tabs
#13488: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13450:
+^I }$
ERROR: code indent should never use tabs
#13489: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13451:
+^I break;$
ERROR: code indent should never use tabs
#13490: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13452:
+^Icase 2:$
ERROR: code indent should never use tabs
#13491: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13453:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13491: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13453:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13492: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13454:
+^I {$
ERROR: code indent should never use tabs
#13493: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13455:
+^I case 0:$
ERROR: code indent should never use tabs
#13494: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13456:
+^I return 52; /* beqi */$
ERROR: code indent should never use tabs
#13495: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13457:
+^I case 1:$
ERROR: code indent should never use tabs
#13496: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13458:
+^I return 53; /* bnei */$
ERROR: code indent should never use tabs
#13497: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13459:
+^I case 2:$
ERROR: code indent should never use tabs
#13498: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13460:
+^I return 55; /* blti */$
ERROR: code indent should never use tabs
#13499: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13461:
+^I case 3:$
ERROR: code indent should never use tabs
#13500: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13462:
+^I return 54; /* bgei */$
ERROR: code indent should never use tabs
#13501: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13463:
+^I }$
ERROR: code indent should never use tabs
#13502: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13464:
+^I break;$
ERROR: code indent should never use tabs
#13503: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13465:
+^Icase 3:$
ERROR: code indent should never use tabs
#13504: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13466:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13504: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13466:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13505: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13467:
+^I {$
ERROR: code indent should never use tabs
#13506: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13468:
+^I case 0:$
ERROR: code indent should never use tabs
#13507: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13469:
+^I return 11; /* entry */$
ERROR: code indent should never use tabs
#13508: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13470:
+^I case 1:$
ERROR: code indent should never use tabs
#13509: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13471:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13509: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13471:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13510: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13472:
+^I^I{$
ERROR: code indent should never use tabs
#13511: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13473:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#13512: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13474:
+^I^I return 87; /* loop */$
ERROR: code indent should never use tabs
#13513: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13475:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#13514: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13476:
+^I^I return 88; /* loopnez */$
ERROR: code indent should never use tabs
#13515: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13477:
+^I^Icase 10:$
ERROR: code indent should never use tabs
#13516: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13478:
+^I^I return 89; /* loopgtz */$
ERROR: code indent should never use tabs
#13517: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13479:
+^I^I}$
ERROR: code indent should never use tabs
#13518: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13480:
+^I break;$
ERROR: code indent should never use tabs
#13519: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13481:
+^I case 2:$
ERROR: code indent should never use tabs
#13520: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13482:
+^I return 59; /* bltui */$
ERROR: code indent should never use tabs
#13521: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13483:
+^I case 3:$
ERROR: code indent should never use tabs
#13522: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13484:
+^I return 58; /* bgeui */$
ERROR: code indent should never use tabs
#13523: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13485:
+^I }$
ERROR: code indent should never use tabs
#13524: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13486:
+^I break;$
ERROR: code indent should never use tabs
#13525: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13487:
+^I}$
ERROR: that open brace { should be on the previous line
#13528: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13490:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13529: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13491:
+^I{$
ERROR: code indent should never use tabs
#13530: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13492:
+^Icase 0:$
ERROR: code indent should never use tabs
#13531: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13493:
+^I return 67; /* bnone */$
ERROR: code indent should never use tabs
#13532: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13494:
+^Icase 1:$
ERROR: code indent should never use tabs
#13533: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13495:
+^I return 60; /* beq */$
ERROR: code indent should never use tabs
#13534: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13496:
+^Icase 2:$
ERROR: code indent should never use tabs
#13535: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13497:
+^I return 63; /* blt */$
ERROR: code indent should never use tabs
#13536: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13498:
+^Icase 3:$
ERROR: code indent should never use tabs
#13537: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13499:
+^I return 65; /* bltu */$
ERROR: code indent should never use tabs
#13538: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13500:
+^Icase 4:$
ERROR: code indent should never use tabs
#13539: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13501:
+^I return 68; /* ball */$
ERROR: code indent should never use tabs
#13540: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13502:
+^Icase 5:$
ERROR: code indent should never use tabs
#13541: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13503:
+^I return 70; /* bbc */$
ERROR: code indent should never use tabs
#13542: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13504:
+^Icase 6:$
ERROR: code indent should never use tabs
#13543: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13505:
+^Icase 7:$
ERROR: code indent should never use tabs
#13544: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13506:
+^I return 56; /* bbci */$
ERROR: code indent should never use tabs
#13545: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13507:
+^Icase 8:$
ERROR: code indent should never use tabs
#13546: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13508:
+^I return 66; /* bany */$
ERROR: code indent should never use tabs
#13547: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13509:
+^Icase 9:$
ERROR: code indent should never use tabs
#13548: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13510:
+^I return 61; /* bne */$
ERROR: code indent should never use tabs
#13549: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13511:
+^Icase 10:$
ERROR: code indent should never use tabs
#13550: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13512:
+^I return 62; /* bge */$
ERROR: code indent should never use tabs
#13551: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13513:
+^Icase 11:$
ERROR: code indent should never use tabs
#13552: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13514:
+^I return 64; /* bgeu */$
ERROR: code indent should never use tabs
#13553: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13515:
+^Icase 12:$
ERROR: code indent should never use tabs
#13554: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13516:
+^I return 69; /* bnall */$
ERROR: code indent should never use tabs
#13555: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13517:
+^Icase 13:$
ERROR: code indent should never use tabs
#13556: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13518:
+^I return 71; /* bbs */$
ERROR: code indent should never use tabs
#13557: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13519:
+^Icase 14:$
ERROR: code indent should never use tabs
#13558: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13520:
+^Icase 15:$
ERROR: code indent should never use tabs
#13559: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13521:
+^I return 57; /* bbsi */$
ERROR: code indent should never use tabs
#13560: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13522:
+^I}$
ERROR: that open brace { should be on the previous line
#13569: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13531:
+ switch (Field_op0_Slot_inst16b_get (insn))
+ {
ERROR: that open brace { should be on the previous line
#13572: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13534:
+ switch (Field_i_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#13573: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13535:
+^I{$
ERROR: code indent should never use tabs
#13574: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13536:
+^Icase 0:$
ERROR: code indent should never use tabs
#13575: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13537:
+^I return 33; /* movi.n */$
ERROR: code indent should never use tabs
#13576: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13538:
+^Icase 1:$
ERROR: code indent should never use tabs
#13577: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13539:
+^I switch (Field_z_Slot_inst16b_get (insn))$
ERROR: that open brace { should be on the previous line
#13577: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13539:
+ switch (Field_z_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#13578: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13540:
+^I {$
ERROR: code indent should never use tabs
#13579: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13541:
+^I case 0:$
ERROR: code indent should never use tabs
#13580: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13542:
+^I return 28; /* beqz.n */$
ERROR: code indent should never use tabs
#13581: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13543:
+^I case 1:$
ERROR: code indent should never use tabs
#13582: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13544:
+^I return 29; /* bnez.n */$
ERROR: code indent should never use tabs
#13583: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13545:
+^I }$
ERROR: code indent should never use tabs
#13584: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13546:
+^I break;$
ERROR: code indent should never use tabs
#13585: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13547:
+^I}$
ERROR: that open brace { should be on the previous line
#13588: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13550:
+ switch (Field_r_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#13589: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13551:
+^I{$
ERROR: code indent should never use tabs
#13590: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13552:
+^Icase 0:$
ERROR: code indent should never use tabs
#13591: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13553:
+^I return 32; /* mov.n */$
ERROR: code indent should never use tabs
#13592: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13554:
+^Icase 15:$
ERROR: code indent should never use tabs
#13593: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13555:
+^I switch (Field_t_Slot_inst16b_get (insn))$
ERROR: that open brace { should be on the previous line
#13593: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13555:
+ switch (Field_t_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#13594: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13556:
+^I {$
ERROR: code indent should never use tabs
#13595: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13557:
+^I case 0:$
ERROR: code indent should never use tabs
#13596: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13558:
+^I return 35; /* ret.n */$
ERROR: code indent should never use tabs
#13597: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13559:
+^I case 1:$
ERROR: code indent should never use tabs
#13598: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13560:
+^I return 15; /* retw.n */$
ERROR: code indent should never use tabs
#13599: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13561:
+^I case 2:$
ERROR: code indent should never use tabs
#13600: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13562:
+^I return 319; /* break.n */$
ERROR: code indent should never use tabs
#13601: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13563:
+^I case 3:$
ERROR: code indent should never use tabs
#13602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13564:
+^I if (Field_s_Slot_inst16b_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13564:
+ if (Field_s_Slot_inst16b_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13603: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13565:
+^I^Ireturn 34; /* nop.n */$
ERROR: code indent should never use tabs
#13604: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13566:
+^I break;$
ERROR: code indent should never use tabs
#13605: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13567:
+^I case 6:$
ERROR: code indent should never use tabs
#13606: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13568:
+^I if (Field_s_Slot_inst16b_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13606: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13568:
+ if (Field_s_Slot_inst16b_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13607: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13569:
+^I^Ireturn 30; /* ill.n */$
ERROR: code indent should never use tabs
#13608: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13570:
+^I break;$
ERROR: code indent should never use tabs
#13609: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13571:
+^I }$
ERROR: code indent should never use tabs
#13610: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13572:
+^I break;$
ERROR: code indent should never use tabs
#13611: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13573:
+^I}$
ERROR: that open brace { should be on the previous line
#13620: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13582:
+ switch (Field_op0_Slot_inst16a_get (insn))
+ {
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#13634: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13596:
+
^
ERROR: trailing whitespace
#13634: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13596:
+^L$
ERROR: code indent should never use tabs
#13639: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13601:
+^I^I^I xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#13646: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13608:
+^I^I^I const xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#13653: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13615:
+^I^I^I^Ixtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#13660: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13622:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#13667: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13629:
+^I^I^I^Ixtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#13674: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13636:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#14054: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14016:
+
^
ERROR: trailing whitespace
#14054: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14016:
+^L$
ERROR: space prohibited between function name and open parenthesis '('
#14089: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14051:
+format_decoder (const xtensa_insnbuf insn)
ERROR: braces {} are necessary for all arms of this statement
#14091: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14053:
+ if ((insn[0] & 0x8) == 0)
[...]
ERROR: braces {} are necessary for all arms of this statement
#14093: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14055:
+ if ((insn[0] & 0xc) == 0x8)
[...]
ERROR: braces {} are necessary for all arms of this statement
#14095: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14057:
+ if ((insn[0] & 0xe) == 0xc)
[...]
ERROR: space prohibited between function name and open parenthesis '('
#14120: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14082:
+length_decoder (const unsigned char *insn)
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#14126: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14088:
+
^
ERROR: trailing whitespace
#14126: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14088:
+^L$
total: 1649 errors, 1 warnings, 14122 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Checking PATCH 7/16: target/xtensa: switch dc233c to libisa...
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#66: FILE: target/xtensa/core-dc233c/xtensa-modules.c:28:
+
^
ERROR: trailing whitespace
#66: FILE: target/xtensa/core-dc233c/xtensa-modules.c:28:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#147: FILE: target/xtensa/core-dc233c/xtensa-modules.c:109:
+
^
ERROR: trailing whitespace
#147: FILE: target/xtensa/core-dc233c/xtensa-modules.c:109:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#314: FILE: target/xtensa/core-dc233c/xtensa-modules.c:276:
+
^
ERROR: trailing whitespace
#314: FILE: target/xtensa/core-dc233c/xtensa-modules.c:276:
+^L$
ERROR: code indent should never use tabs
#1563: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1525:
+^I^I uint32 val ATTRIBUTE_UNUSED)$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1637:
+
^
ERROR: trailing whitespace
#1675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1637:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1682: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1644:
+
^
ERROR: trailing whitespace
#1682: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1644:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1695: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1657:
+
^
ERROR: trailing whitespace
#1695: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1657:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1706: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1668:
+
^
ERROR: trailing whitespace
#1706: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1668:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1772: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1734:
+
^
ERROR: trailing whitespace
#1772: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1734:
+^L$
ERROR: line over 90 characters
#2006: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1968:
+ simm7_0 = ((((-((((imm7_0 >> 6) & 1)) & (((imm7_0 >> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0;
ERROR: that open brace { should be on the previous line
#2070: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2032:
+ switch (ai4const_0)
+ {
ERROR: trailing statements should be on next line
#2072: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2034:
+ case 0xffffffff: t_0 = 0; break;
ERROR: trailing statements should be on next line
#2073: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2035:
+ case 0x1: t_0 = 0x1; break;
ERROR: trailing statements should be on next line
#2074: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2036:
+ case 0x2: t_0 = 0x2; break;
ERROR: trailing statements should be on next line
#2075: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2037:
+ case 0x3: t_0 = 0x3; break;
ERROR: trailing statements should be on next line
#2076: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2038:
+ case 0x4: t_0 = 0x4; break;
ERROR: trailing statements should be on next line
#2077: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2039:
+ case 0x5: t_0 = 0x5; break;
ERROR: trailing statements should be on next line
#2078: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2040:
+ case 0x6: t_0 = 0x6; break;
ERROR: trailing statements should be on next line
#2079: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2041:
+ case 0x7: t_0 = 0x7; break;
ERROR: trailing statements should be on next line
#2080: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2042:
+ case 0x8: t_0 = 0x8; break;
ERROR: trailing statements should be on next line
#2081: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2043:
+ case 0x9: t_0 = 0x9; break;
ERROR: trailing statements should be on next line
#2082: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2044:
+ case 0xa: t_0 = 0xa; break;
ERROR: trailing statements should be on next line
#2083: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2045:
+ case 0xb: t_0 = 0xb; break;
ERROR: trailing statements should be on next line
#2084: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2046:
+ case 0xc: t_0 = 0xc; break;
ERROR: trailing statements should be on next line
#2085: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2047:
+ case 0xd: t_0 = 0xd; break;
ERROR: trailing statements should be on next line
#2086: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2048:
+ case 0xe: t_0 = 0xe; break;
ERROR: trailing statements should be on next line
#2087: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2049:
+ default: t_0 = 0xf; break;
ERROR: that open brace { should be on the previous line
#2108: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2070:
+ switch (b4const_0)
+ {
ERROR: trailing statements should be on next line
#2110: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2072:
+ case 0xffffffff: r_0 = 0; break;
ERROR: trailing statements should be on next line
#2111: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2073:
+ case 0x1: r_0 = 0x1; break;
ERROR: trailing statements should be on next line
#2112: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2074:
+ case 0x2: r_0 = 0x2; break;
ERROR: trailing statements should be on next line
#2113: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2075:
+ case 0x3: r_0 = 0x3; break;
ERROR: trailing statements should be on next line
#2114: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2076:
+ case 0x4: r_0 = 0x4; break;
ERROR: trailing statements should be on next line
#2115: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2077:
+ case 0x5: r_0 = 0x5; break;
ERROR: trailing statements should be on next line
#2116: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2078:
+ case 0x6: r_0 = 0x6; break;
ERROR: trailing statements should be on next line
#2117: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2079:
+ case 0x7: r_0 = 0x7; break;
ERROR: trailing statements should be on next line
#2118: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2080:
+ case 0x8: r_0 = 0x8; break;
ERROR: trailing statements should be on next line
#2119: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2081:
+ case 0xa: r_0 = 0x9; break;
ERROR: trailing statements should be on next line
#2120: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2082:
+ case 0xc: r_0 = 0xa; break;
ERROR: trailing statements should be on next line
#2121: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2083:
+ case 0x10: r_0 = 0xb; break;
ERROR: trailing statements should be on next line
#2122: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2084:
+ case 0x20: r_0 = 0xc; break;
ERROR: trailing statements should be on next line
#2123: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2085:
+ case 0x40: r_0 = 0xd; break;
ERROR: trailing statements should be on next line
#2124: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2086:
+ case 0x80: r_0 = 0xe; break;
ERROR: trailing statements should be on next line
#2125: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2087:
+ default: r_0 = 0xf; break;
ERROR: that open brace { should be on the previous line
#2146: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2108:
+ switch (b4constu_0)
+ {
ERROR: trailing statements should be on next line
#2148: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2110:
+ case 0x8000: r_0 = 0; break;
ERROR: trailing statements should be on next line
#2149: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2111:
+ case 0x10000: r_0 = 0x1; break;
ERROR: trailing statements should be on next line
#2150: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2112:
+ case 0x2: r_0 = 0x2; break;
ERROR: trailing statements should be on next line
#2151: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2113:
+ case 0x3: r_0 = 0x3; break;
ERROR: trailing statements should be on next line
#2152: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2114:
+ case 0x4: r_0 = 0x4; break;
ERROR: trailing statements should be on next line
#2153: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2115:
+ case 0x5: r_0 = 0x5; break;
ERROR: trailing statements should be on next line
#2154: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2116:
+ case 0x6: r_0 = 0x6; break;
ERROR: trailing statements should be on next line
#2155: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2117:
+ case 0x7: r_0 = 0x7; break;
ERROR: trailing statements should be on next line
#2156: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2118:
+ case 0x8: r_0 = 0x8; break;
ERROR: trailing statements should be on next line
#2157: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2119:
+ case 0xa: r_0 = 0x9; break;
ERROR: trailing statements should be on next line
#2158: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2120:
+ case 0xc: r_0 = 0xa; break;
ERROR: trailing statements should be on next line
#2159: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2121:
+ case 0x10: r_0 = 0xb; break;
ERROR: trailing statements should be on next line
#2160: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2122:
+ case 0x20: r_0 = 0xc; break;
ERROR: trailing statements should be on next line
#2161: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2123:
+ case 0x40: r_0 = 0xd; break;
ERROR: trailing statements should be on next line
#2162: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2124:
+ case 0x80: r_0 = 0xe; break;
ERROR: trailing statements should be on next line
#2163: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2125:
+ default: r_0 = 0xf; break;
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#3074: FILE: target/xtensa/core-dc233c/xtensa-modules.c:3036:
+
^
ERROR: trailing whitespace
#3074: FILE: target/xtensa/core-dc233c/xtensa-modules.c:3036:
+^L$
WARNING: line over 80 characters
#6597: FILE: target/xtensa/core-dc233c/xtensa-modules.c:6559:
+ 1, Iclass_iclass_READ_IMPWIRE_stateArgs, 1, Iclass_iclass_READ_IMPWIRE_intfArgs },
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#6935: FILE: target/xtensa/core-dc233c/xtensa-modules.c:6897:
+
^
ERROR: trailing whitespace
#6935: FILE: target/xtensa/core-dc233c/xtensa-modules.c:6897:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#11458: FILE: target/xtensa/core-dc233c/xtensa-modules.c:11420:
+
^
ERROR: trailing whitespace
#11458: FILE: target/xtensa/core-dc233c/xtensa-modules.c:11420:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#13275: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13237:
+
^
ERROR: trailing whitespace
#13275: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13237:
+^L$
ERROR: that open brace { should be on the previous line
#13281: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13243:
+ switch (Field_op0_Slot_inst_get (insn))
+ {
ERROR: that open brace { should be on the previous line
#13284: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13246:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13285: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13247:
+^I{$
ERROR: code indent should never use tabs
#13286: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13248:
+^Icase 0:$
ERROR: code indent should never use tabs
#13287: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13249:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13287: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13249:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13288: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13250:
+^I {$
ERROR: code indent should never use tabs
#13289: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13251:
+^I case 0:$
ERROR: code indent should never use tabs
#13290: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13252:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13290: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13252:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13291: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13253:
+^I^I{$
ERROR: code indent should never use tabs
#13292: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13254:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13293: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13255:
+^I^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13293: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13255:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13294: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13256:
+^I^I {$
ERROR: code indent should never use tabs
#13295: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13257:
+^I^I case 0:$
ERROR: code indent should never use tabs
#13296: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13258:
+^I^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#13296: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13258:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#13297: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13259:
+^I^I^I Field_n_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#13298: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13260:
+^I^I^Ireturn OPCODE_ILL;$
ERROR: code indent should never use tabs
#13299: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13261:
+^I^I break;$
ERROR: code indent should never use tabs
#13300: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13262:
+^I^I case 2:$
ERROR: code indent should never use tabs
#13301: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13263:
+^I^I switch (Field_n_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13301: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13263:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13302: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13264:
+^I^I^I{$
ERROR: code indent should never use tabs
#13303: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13265:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#13304: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13266:
+^I^I^I return OPCODE_RET;$
ERROR: code indent should never use tabs
#13305: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13267:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#13306: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13268:
+^I^I^I return OPCODE_RETW;$
ERROR: code indent should never use tabs
#13307: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13269:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#13308: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13270:
+^I^I^I return OPCODE_JX;$
ERROR: code indent should never use tabs
#13309: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13271:
+^I^I^I}$
ERROR: code indent should never use tabs
#13310: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13272:
+^I^I break;$
ERROR: code indent should never use tabs
#13311: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13273:
+^I^I case 3:$
ERROR: code indent should never use tabs
#13312: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13274:
+^I^I switch (Field_n_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13312: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13274:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13313: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13275:
+^I^I^I{$
ERROR: code indent should never use tabs
#13314: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13276:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#13315: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13277:
+^I^I^I return OPCODE_CALLX0;$
ERROR: code indent should never use tabs
#13316: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13278:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#13317: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13279:
+^I^I^I return OPCODE_CALLX4;$
ERROR: code indent should never use tabs
#13318: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13280:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#13319: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13281:
+^I^I^I return OPCODE_CALLX8;$
ERROR: code indent should never use tabs
#13320: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13282:
+^I^I^Icase 3:$
ERROR: code indent should never use tabs
#13321: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13283:
+^I^I^I return OPCODE_CALLX12;$
ERROR: code indent should never use tabs
#13322: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13284:
+^I^I^I}$
ERROR: code indent should never use tabs
#13323: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13285:
+^I^I break;$
ERROR: code indent should never use tabs
#13324: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13286:
+^I^I }$
ERROR: code indent should never use tabs
#13325: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13287:
+^I^I break;$
ERROR: code indent should never use tabs
#13326: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13288:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13327: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13289:
+^I^I return OPCODE_MOVSP;$
ERROR: code indent should never use tabs
#13328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13290:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#13329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13291:
+^I^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: that open brace { should be on the previous line
#13329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13291:
+ if (Field_s_Slot_inst_get (insn) == 0)
+ {
ERROR: suspect code indent for conditional statements (18, 22)
#13329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13291:
+ if (Field_s_Slot_inst_get (insn) == 0)
+ {
ERROR: code indent should never use tabs
#13330: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13292:
+^I^I {$
ERROR: code indent should never use tabs
#13331: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13293:
+^I^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13331: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13293:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13332: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13294:
+^I^I^I{$
ERROR: code indent should never use tabs
#13333: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13295:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#13334: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13296:
+^I^I^I return OPCODE_ISYNC;$
ERROR: code indent should never use tabs
#13335: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13297:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#13336: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13298:
+^I^I^I return OPCODE_RSYNC;$
ERROR: code indent should never use tabs
#13337: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13299:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#13338: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13300:
+^I^I^I return OPCODE_ESYNC;$
ERROR: code indent should never use tabs
#13339: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13301:
+^I^I^Icase 3:$
ERROR: code indent should never use tabs
#13340: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13302:
+^I^I^I return OPCODE_DSYNC;$
ERROR: code indent should never use tabs
#13341: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13303:
+^I^I^Icase 8:$
ERROR: code indent should never use tabs
#13342: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13304:
+^I^I^I return OPCODE_EXCW;$
ERROR: code indent should never use tabs
#13343: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13305:
+^I^I^Icase 12:$
ERROR: code indent should never use tabs
#13344: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13306:
+^I^I^I return OPCODE_MEMW;$
ERROR: code indent should never use tabs
#13345: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13307:
+^I^I^Icase 13:$
ERROR: code indent should never use tabs
#13346: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13308:
+^I^I^I return OPCODE_EXTW;$
ERROR: code indent should never use tabs
#13347: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13309:
+^I^I^Icase 15:$
ERROR: code indent should never use tabs
#13348: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13310:
+^I^I^I return OPCODE_NOP;$
ERROR: code indent should never use tabs
#13349: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13311:
+^I^I^I}$
ERROR: code indent should never use tabs
#13350: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13312:
+^I^I }$
ERROR: code indent should never use tabs
#13351: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13313:
+^I^I break;$
ERROR: code indent should never use tabs
#13352: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13314:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13353: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13315:
+^I^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13353: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13315:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13354: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13316:
+^I^I {$
ERROR: code indent should never use tabs
#13355: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13317:
+^I^I case 0:$
ERROR: code indent should never use tabs
#13356: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13318:
+^I^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13356: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13318:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13357: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13319:
+^I^I^I{$
ERROR: code indent should never use tabs
#13358: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13320:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#13359: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13321:
+^I^I^I return OPCODE_RFE;$
ERROR: code indent should never use tabs
#13360: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13322:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#13361: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13323:
+^I^I^I return OPCODE_RFDE;$
ERROR: code indent should never use tabs
#13362: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13324:
+^I^I^Icase 4:$
ERROR: code indent should never use tabs
#13363: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13325:
+^I^I^I return OPCODE_RFWO;$
ERROR: code indent should never use tabs
#13364: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13326:
+^I^I^Icase 5:$
ERROR: code indent should never use tabs
#13365: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13327:
+^I^I^I return OPCODE_RFWU;$
ERROR: code indent should never use tabs
#13366: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13328:
+^I^I^I}$
ERROR: code indent should never use tabs
#13367: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13329:
+^I^I break;$
ERROR: code indent should never use tabs
#13368: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13330:
+^I^I case 1:$
ERROR: code indent should never use tabs
#13369: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13331:
+^I^I return OPCODE_RFI;$
ERROR: code indent should never use tabs
#13370: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13332:
+^I^I }$
ERROR: code indent should never use tabs
#13371: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13333:
+^I^I break;$
ERROR: code indent should never use tabs
#13372: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13334:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#13373: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13335:
+^I^I return OPCODE_BREAK;$
ERROR: code indent should never use tabs
#13374: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13336:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#13375: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13337:
+^I^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13375: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13337:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13376: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13338:
+^I^I {$
ERROR: code indent should never use tabs
#13377: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13339:
+^I^I case 0:$
ERROR: code indent should never use tabs
#13378: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13340:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13378: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13340:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13379: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13341:
+^I^I^Ireturn OPCODE_SYSCALL;$
ERROR: code indent should never use tabs
#13380: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13342:
+^I^I break;$
ERROR: code indent should never use tabs
#13381: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13343:
+^I^I case 1:$
ERROR: code indent should never use tabs
#13382: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13344:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13382: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13344:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13383: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13345:
+^I^I^Ireturn OPCODE_SIMCALL;$
ERROR: code indent should never use tabs
#13384: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13346:
+^I^I break;$
ERROR: code indent should never use tabs
#13385: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13347:
+^I^I }$
ERROR: code indent should never use tabs
#13386: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13348:
+^I^I break;$
ERROR: code indent should never use tabs
#13387: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13349:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#13388: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13350:
+^I^I return OPCODE_RSIL;$
ERROR: code indent should never use tabs
#13389: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13351:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#13390: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13352:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13390: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13352:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13391: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13353:
+^I^I return OPCODE_WAITI;$
ERROR: code indent should never use tabs
#13392: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13354:
+^I^I break;$
ERROR: code indent should never use tabs
#13393: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13355:
+^I^I}$
ERROR: code indent should never use tabs
#13394: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13356:
+^I break;$
ERROR: code indent should never use tabs
#13395: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13357:
+^I case 1:$
ERROR: code indent should never use tabs
#13396: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13358:
+^I return OPCODE_AND;$
ERROR: code indent should never use tabs
#13397: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13359:
+^I case 2:$
ERROR: code indent should never use tabs
#13398: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13360:
+^I return OPCODE_OR;$
ERROR: code indent should never use tabs
#13399: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13361:
+^I case 3:$
ERROR: code indent should never use tabs
#13400: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13362:
+^I return OPCODE_XOR;$
ERROR: code indent should never use tabs
#13401: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13363:
+^I case 4:$
ERROR: code indent should never use tabs
#13402: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13364:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13402: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13364:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13403: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13365:
+^I^I{$
ERROR: code indent should never use tabs
#13404: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13366:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13405: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13367:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13405: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13367:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13406: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13368:
+^I^I return OPCODE_SSR;$
ERROR: code indent should never use tabs
#13407: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13369:
+^I^I break;$
ERROR: code indent should never use tabs
#13408: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13370:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13409: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13371:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13409: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13371:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13410: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13372:
+^I^I return OPCODE_SSL;$
ERROR: code indent should never use tabs
#13411: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13373:
+^I^I break;$
ERROR: code indent should never use tabs
#13412: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13374:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#13413: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13375:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13413: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13375:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13414: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13376:
+^I^I return OPCODE_SSA8L;$
ERROR: code indent should never use tabs
#13415: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13377:
+^I^I break;$
ERROR: code indent should never use tabs
#13416: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13378:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13417: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13379:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13417: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13379:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13418: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13380:
+^I^I return OPCODE_SSA8B;$
ERROR: code indent should never use tabs
#13419: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13381:
+^I^I break;$
ERROR: code indent should never use tabs
#13420: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13382:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#13421: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13383:
+^I^I if (Field_thi3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13421: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13383:
+ if (Field_thi3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13422: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13384:
+^I^I return OPCODE_SSAI;$
ERROR: code indent should never use tabs
#13423: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13385:
+^I^I break;$
ERROR: code indent should never use tabs
#13424: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13386:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#13425: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13387:
+^I^I return OPCODE_RER;$
ERROR: code indent should never use tabs
#13426: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13388:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#13427: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13389:
+^I^I return OPCODE_WER;$
ERROR: code indent should never use tabs
#13428: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13390:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#13429: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13391:
+^I^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13429: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13391:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13430: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13392:
+^I^I return OPCODE_ROTW;$
ERROR: code indent should never use tabs
#13431: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13393:
+^I^I break;$
ERROR: code indent should never use tabs
#13432: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13394:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#13433: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13395:
+^I^I return OPCODE_NSA;$
ERROR: code indent should never use tabs
#13434: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13396:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#13435: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13397:
+^I^I return OPCODE_NSAU;$
ERROR: code indent should never use tabs
#13436: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13398:
+^I^I}$
ERROR: code indent should never use tabs
#13437: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13399:
+^I break;$
ERROR: code indent should never use tabs
#13438: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13400:
+^I case 5:$
ERROR: code indent should never use tabs
#13439: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13401:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13439: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13401:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13440: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13402:
+^I^I{$
ERROR: code indent should never use tabs
#13441: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13403:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13442: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13404:
+^I^I return OPCODE_HWWITLBA;$
ERROR: code indent should never use tabs
#13443: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13405:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13444: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13406:
+^I^I return OPCODE_RITLB0;$
ERROR: code indent should never use tabs
#13445: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13407:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#13446: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13408:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13446: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13408:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13447: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13409:
+^I^I return OPCODE_IITLB;$
ERROR: code indent should never use tabs
#13448: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13410:
+^I^I break;$
ERROR: code indent should never use tabs
#13449: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13411:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#13450: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13412:
+^I^I return OPCODE_PITLB;$
ERROR: code indent should never use tabs
#13451: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13413:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#13452: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13414:
+^I^I return OPCODE_WITLB;$
ERROR: code indent should never use tabs
#13453: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13415:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#13454: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13416:
+^I^I return OPCODE_RITLB1;$
ERROR: code indent should never use tabs
#13455: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13417:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#13456: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13418:
+^I^I return OPCODE_HWWDTLBA;$
ERROR: code indent should never use tabs
#13457: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13419:
+^I^Icase 11:$
ERROR: code indent should never use tabs
#13458: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13420:
+^I^I return OPCODE_RDTLB0;$
ERROR: code indent should never use tabs
#13459: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13421:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#13460: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13422:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13460: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13422:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13461: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13423:
+^I^I return OPCODE_IDTLB;$
ERROR: code indent should never use tabs
#13462: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13424:
+^I^I break;$
ERROR: code indent should never use tabs
#13463: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13425:
+^I^Icase 13:$
ERROR: code indent should never use tabs
#13464: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13426:
+^I^I return OPCODE_PDTLB;$
ERROR: code indent should never use tabs
#13465: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13427:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#13466: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13428:
+^I^I return OPCODE_WDTLB;$
ERROR: code indent should never use tabs
#13467: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13429:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#13468: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13430:
+^I^I return OPCODE_RDTLB1;$
ERROR: code indent should never use tabs
#13469: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13431:
+^I^I}$
ERROR: code indent should never use tabs
#13470: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13432:
+^I break;$
ERROR: code indent should never use tabs
#13471: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13433:
+^I case 6:$
ERROR: code indent should never use tabs
#13472: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13434:
+^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13472: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13434:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13473: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13435:
+^I^I{$
ERROR: code indent should never use tabs
#13474: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13436:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13475: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13437:
+^I^I return OPCODE_NEG;$
ERROR: code indent should never use tabs
#13476: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13438:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13477: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13439:
+^I^I return OPCODE_ABS;$
ERROR: code indent should never use tabs
#13478: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13440:
+^I^I}$
ERROR: code indent should never use tabs
#13479: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13441:
+^I break;$
ERROR: code indent should never use tabs
#13480: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13442:
+^I case 8:$
ERROR: code indent should never use tabs
#13481: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13443:
+^I return OPCODE_ADD;$
ERROR: code indent should never use tabs
#13482: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13444:
+^I case 9:$
ERROR: code indent should never use tabs
#13483: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13445:
+^I return OPCODE_ADDX2;$
ERROR: code indent should never use tabs
#13484: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13446:
+^I case 10:$
ERROR: code indent should never use tabs
#13485: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13447:
+^I return OPCODE_ADDX4;$
ERROR: code indent should never use tabs
#13486: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13448:
+^I case 11:$
ERROR: code indent should never use tabs
#13487: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13449:
+^I return OPCODE_ADDX8;$
ERROR: code indent should never use tabs
#13488: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13450:
+^I case 12:$
ERROR: code indent should never use tabs
#13489: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13451:
+^I return OPCODE_SUB;$
ERROR: code indent should never use tabs
#13490: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13452:
+^I case 13:$
ERROR: code indent should never use tabs
#13491: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13453:
+^I return OPCODE_SUBX2;$
ERROR: code indent should never use tabs
#13492: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13454:
+^I case 14:$
ERROR: code indent should never use tabs
#13493: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13455:
+^I return OPCODE_SUBX4;$
ERROR: code indent should never use tabs
#13494: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13456:
+^I case 15:$
ERROR: code indent should never use tabs
#13495: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13457:
+^I return OPCODE_SUBX8;$
ERROR: code indent should never use tabs
#13496: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13458:
+^I }$
ERROR: code indent should never use tabs
#13497: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13459:
+^I break;$
ERROR: code indent should never use tabs
#13498: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13460:
+^Icase 1:$
ERROR: code indent should never use tabs
#13499: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13461:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13499: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13461:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13500: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13462:
+^I {$
ERROR: code indent should never use tabs
#13501: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13463:
+^I case 0:$
ERROR: code indent should never use tabs
#13502: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13464:
+^I case 1:$
ERROR: code indent should never use tabs
#13503: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13465:
+^I return OPCODE_SLLI;$
ERROR: code indent should never use tabs
#13504: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13466:
+^I case 2:$
ERROR: code indent should never use tabs
#13505: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13467:
+^I case 3:$
ERROR: code indent should never use tabs
#13506: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13468:
+^I return OPCODE_SRAI;$
ERROR: code indent should never use tabs
#13507: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13469:
+^I case 4:$
ERROR: code indent should never use tabs
#13508: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13470:
+^I return OPCODE_SRLI;$
ERROR: code indent should never use tabs
#13509: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13471:
+^I case 6:$
ERROR: code indent should never use tabs
#13510: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13472:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13510: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13472:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13511: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13473:
+^I^I{$
ERROR: code indent should never use tabs
#13512: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13474:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13513: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13475:
+^I^I return OPCODE_XSR_LBEG;$
ERROR: code indent should never use tabs
#13514: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13476:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13515: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13477:
+^I^I return OPCODE_XSR_LEND;$
ERROR: code indent should never use tabs
#13516: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13478:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#13517: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13479:
+^I^I return OPCODE_XSR_LCOUNT;$
ERROR: code indent should never use tabs
#13518: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13480:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13519: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13481:
+^I^I return OPCODE_XSR_SAR;$
ERROR: code indent should never use tabs
#13520: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13482:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#13521: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13483:
+^I^I return OPCODE_XSR_LITBASE;$
ERROR: code indent should never use tabs
#13522: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13484:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#13523: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13485:
+^I^I return OPCODE_XSR_SCOMPARE1;$
ERROR: code indent should never use tabs
#13524: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13486:
+^I^Icase 16:$
ERROR: code indent should never use tabs
#13525: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13487:
+^I^I return OPCODE_XSR_ACCLO;$
ERROR: code indent should never use tabs
#13526: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13488:
+^I^Icase 17:$
ERROR: code indent should never use tabs
#13527: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13489:
+^I^I return OPCODE_XSR_ACCHI;$
ERROR: code indent should never use tabs
#13528: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13490:
+^I^Icase 32:$
ERROR: code indent should never use tabs
#13529: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13491:
+^I^I return OPCODE_XSR_M0;$
ERROR: code indent should never use tabs
#13530: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13492:
+^I^Icase 33:$
ERROR: code indent should never use tabs
#13531: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13493:
+^I^I return OPCODE_XSR_M1;$
ERROR: code indent should never use tabs
#13532: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13494:
+^I^Icase 34:$
ERROR: code indent should never use tabs
#13533: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13495:
+^I^I return OPCODE_XSR_M2;$
ERROR: code indent should never use tabs
#13534: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13496:
+^I^Icase 35:$
ERROR: code indent should never use tabs
#13535: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13497:
+^I^I return OPCODE_XSR_M3;$
ERROR: code indent should never use tabs
#13536: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13498:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#13537: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13499:
+^I^I return OPCODE_XSR_WINDOWBASE;$
ERROR: code indent should never use tabs
#13538: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13500:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#13539: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13501:
+^I^I return OPCODE_XSR_WINDOWSTART;$
ERROR: code indent should never use tabs
#13540: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13502:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#13541: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13503:
+^I^I return OPCODE_XSR_PTEVADDR;$
ERROR: code indent should never use tabs
#13542: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13504:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#13543: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13505:
+^I^I return OPCODE_XSR_RASID;$
ERROR: code indent should never use tabs
#13544: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13506:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#13545: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13507:
+^I^I return OPCODE_XSR_ITLBCFG;$
ERROR: code indent should never use tabs
#13546: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13508:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#13547: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13509:
+^I^I return OPCODE_XSR_DTLBCFG;$
ERROR: code indent should never use tabs
#13548: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13510:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#13549: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13511:
+^I^I return OPCODE_XSR_IBREAKENABLE;$
ERROR: code indent should never use tabs
#13550: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13512:
+^I^Icase 99:$
ERROR: code indent should never use tabs
#13551: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13513:
+^I^I return OPCODE_XSR_ATOMCTL;$
ERROR: code indent should never use tabs
#13552: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13514:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#13553: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13515:
+^I^I return OPCODE_XSR_DDR;$
ERROR: code indent should never use tabs
#13554: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13516:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#13555: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13517:
+^I^I return OPCODE_XSR_IBREAKA0;$
ERROR: code indent should never use tabs
#13556: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13518:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#13557: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13519:
+^I^I return OPCODE_XSR_IBREAKA1;$
ERROR: code indent should never use tabs
#13558: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13520:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#13559: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13521:
+^I^I return OPCODE_XSR_DBREAKA0;$
ERROR: code indent should never use tabs
#13560: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13522:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#13561: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13523:
+^I^I return OPCODE_XSR_DBREAKA1;$
ERROR: code indent should never use tabs
#13562: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13524:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#13563: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13525:
+^I^I return OPCODE_XSR_DBREAKC0;$
ERROR: code indent should never use tabs
#13564: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13526:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#13565: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13527:
+^I^I return OPCODE_XSR_DBREAKC1;$
ERROR: code indent should never use tabs
#13566: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13528:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#13567: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13529:
+^I^I return OPCODE_XSR_EPC1;$
ERROR: code indent should never use tabs
#13568: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13530:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#13569: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13531:
+^I^I return OPCODE_XSR_EPC2;$
ERROR: code indent should never use tabs
#13570: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13532:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#13571: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13533:
+^I^I return OPCODE_XSR_EPC3;$
ERROR: code indent should never use tabs
#13572: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13534:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#13573: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13535:
+^I^I return OPCODE_XSR_EPC4;$
ERROR: code indent should never use tabs
#13574: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13536:
+^I^Icase 181:$
ERROR: code indent should never use tabs
#13575: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13537:
+^I^I return OPCODE_XSR_EPC5;$
ERROR: code indent should never use tabs
#13576: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13538:
+^I^Icase 182:$
ERROR: code indent should never use tabs
#13577: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13539:
+^I^I return OPCODE_XSR_EPC6;$
ERROR: code indent should never use tabs
#13578: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13540:
+^I^Icase 183:$
ERROR: code indent should never use tabs
#13579: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13541:
+^I^I return OPCODE_XSR_EPC7;$
ERROR: code indent should never use tabs
#13580: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13542:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#13581: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13543:
+^I^I return OPCODE_XSR_DEPC;$
ERROR: code indent should never use tabs
#13582: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13544:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#13583: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13545:
+^I^I return OPCODE_XSR_EPS2;$
ERROR: code indent should never use tabs
#13584: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13546:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#13585: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13547:
+^I^I return OPCODE_XSR_EPS3;$
ERROR: code indent should never use tabs
#13586: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13548:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#13587: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13549:
+^I^I return OPCODE_XSR_EPS4;$
ERROR: code indent should never use tabs
#13588: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13550:
+^I^Icase 197:$
ERROR: code indent should never use tabs
#13589: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13551:
+^I^I return OPCODE_XSR_EPS5;$
ERROR: code indent should never use tabs
#13590: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13552:
+^I^Icase 198:$
ERROR: code indent should never use tabs
#13591: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13553:
+^I^I return OPCODE_XSR_EPS6;$
ERROR: code indent should never use tabs
#13592: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13554:
+^I^Icase 199:$
ERROR: code indent should never use tabs
#13593: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13555:
+^I^I return OPCODE_XSR_EPS7;$
ERROR: code indent should never use tabs
#13594: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13556:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#13595: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13557:
+^I^I return OPCODE_XSR_EXCSAVE1;$
ERROR: code indent should never use tabs
#13596: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13558:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#13597: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13559:
+^I^I return OPCODE_XSR_EXCSAVE2;$
ERROR: code indent should never use tabs
#13598: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13560:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#13599: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13561:
+^I^I return OPCODE_XSR_EXCSAVE3;$
ERROR: code indent should never use tabs
#13600: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13562:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#13601: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13563:
+^I^I return OPCODE_XSR_EXCSAVE4;$
ERROR: code indent should never use tabs
#13602: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13564:
+^I^Icase 213:$
ERROR: code indent should never use tabs
#13603: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13565:
+^I^I return OPCODE_XSR_EXCSAVE5;$
ERROR: code indent should never use tabs
#13604: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13566:
+^I^Icase 214:$
ERROR: code indent should never use tabs
#13605: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13567:
+^I^I return OPCODE_XSR_EXCSAVE6;$
ERROR: code indent should never use tabs
#13606: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13568:
+^I^Icase 215:$
ERROR: code indent should never use tabs
#13607: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13569:
+^I^I return OPCODE_XSR_EXCSAVE7;$
ERROR: code indent should never use tabs
#13608: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13570:
+^I^Icase 224:$
ERROR: code indent should never use tabs
#13609: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13571:
+^I^I return OPCODE_XSR_CPENABLE;$
ERROR: code indent should never use tabs
#13610: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13572:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#13611: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13573:
+^I^I return OPCODE_XSR_INTENABLE;$
ERROR: code indent should never use tabs
#13612: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13574:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#13613: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13575:
+^I^I return OPCODE_XSR_PS;$
ERROR: code indent should never use tabs
#13614: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13576:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#13615: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13577:
+^I^I return OPCODE_XSR_VECBASE;$
ERROR: code indent should never use tabs
#13616: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13578:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#13617: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13579:
+^I^I return OPCODE_XSR_EXCCAUSE;$
ERROR: code indent should never use tabs
#13618: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13580:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#13619: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13581:
+^I^I return OPCODE_XSR_DEBUGCAUSE;$
ERROR: code indent should never use tabs
#13620: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13582:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#13621: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13583:
+^I^I return OPCODE_XSR_CCOUNT;$
ERROR: code indent should never use tabs
#13622: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13584:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#13623: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13585:
+^I^I return OPCODE_XSR_ICOUNT;$
ERROR: code indent should never use tabs
#13624: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13586:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#13625: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13587:
+^I^I return OPCODE_XSR_ICOUNTLEVEL;$
ERROR: code indent should never use tabs
#13626: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13588:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#13627: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13589:
+^I^I return OPCODE_XSR_EXCVADDR;$
ERROR: code indent should never use tabs
#13628: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13590:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#13629: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13591:
+^I^I return OPCODE_XSR_CCOMPARE0;$
ERROR: code indent should never use tabs
#13630: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13592:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#13631: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13593:
+^I^I return OPCODE_XSR_CCOMPARE1;$
ERROR: code indent should never use tabs
#13632: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13594:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#13633: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13595:
+^I^I return OPCODE_XSR_CCOMPARE2;$
ERROR: code indent should never use tabs
#13634: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13596:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#13635: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13597:
+^I^I return OPCODE_XSR_MISC0;$
ERROR: code indent should never use tabs
#13636: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13598:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#13637: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13599:
+^I^I return OPCODE_XSR_MISC1;$
ERROR: code indent should never use tabs
#13638: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13600:
+^I^I}$
ERROR: code indent should never use tabs
#13639: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13601:
+^I break;$
ERROR: code indent should never use tabs
#13640: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13602:
+^I case 8:$
ERROR: code indent should never use tabs
#13641: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13603:
+^I return OPCODE_SRC;$
ERROR: code indent should never use tabs
#13642: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13604:
+^I case 9:$
ERROR: code indent should never use tabs
#13643: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13605:
+^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13643: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13605:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13644: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13606:
+^I^Ireturn OPCODE_SRL;$
ERROR: code indent should never use tabs
#13645: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13607:
+^I break;$
ERROR: code indent should never use tabs
#13646: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13608:
+^I case 10:$
ERROR: code indent should never use tabs
#13647: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13609:
+^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13647: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13609:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13648: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13610:
+^I^Ireturn OPCODE_SLL;$
ERROR: code indent should never use tabs
#13649: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13611:
+^I break;$
ERROR: code indent should never use tabs
#13650: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13612:
+^I case 11:$
ERROR: code indent should never use tabs
#13651: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13613:
+^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13651: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13613:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13652: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13614:
+^I^Ireturn OPCODE_SRA;$
ERROR: code indent should never use tabs
#13653: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13615:
+^I break;$
ERROR: code indent should never use tabs
#13654: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13616:
+^I case 12:$
ERROR: code indent should never use tabs
#13655: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13617:
+^I return OPCODE_MUL16U;$
ERROR: code indent should never use tabs
#13656: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13618:
+^I case 13:$
ERROR: code indent should never use tabs
#13657: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13619:
+^I return OPCODE_MUL16S;$
ERROR: code indent should never use tabs
#13658: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13620:
+^I case 15:$
ERROR: code indent should never use tabs
#13659: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13621:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13659: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13621:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13660: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13622:
+^I^I{$
ERROR: code indent should never use tabs
#13661: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13623:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13662: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13624:
+^I^I return OPCODE_LICT;$
ERROR: code indent should never use tabs
#13663: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13625:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13664: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13626:
+^I^I return OPCODE_SICT;$
ERROR: code indent should never use tabs
#13665: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13627:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#13666: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13628:
+^I^I return OPCODE_LICW;$
ERROR: code indent should never use tabs
#13667: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13629:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13668: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13630:
+^I^I return OPCODE_SICW;$
ERROR: code indent should never use tabs
#13669: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13631:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#13670: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13632:
+^I^I return OPCODE_LDCT;$
ERROR: code indent should never use tabs
#13671: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13633:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#13672: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13634:
+^I^I return OPCODE_SDCT;$
ERROR: code indent should never use tabs
#13673: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13635:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#13674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13636:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#13674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13636:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#13675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13637:
+^I^I return OPCODE_RFDO;$
ERROR: code indent should never use tabs
#13676: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13638:
+^I^I if (Field_t_Slot_inst_get (insn) == 1)$
ERROR: braces {} are necessary for all arms of this statement
#13676: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13638:
+ if (Field_t_Slot_inst_get (insn) == 1)
[...]
ERROR: code indent should never use tabs
#13677: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13639:
+^I^I return OPCODE_RFDD;$
ERROR: code indent should never use tabs
#13678: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13640:
+^I^I break;$
ERROR: code indent should never use tabs
#13679: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13641:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#13680: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13642:
+^I^I return OPCODE_LDPTE;$
ERROR: code indent should never use tabs
#13681: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13643:
+^I^I}$
ERROR: code indent should never use tabs
#13682: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13644:
+^I break;$
ERROR: code indent should never use tabs
#13683: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13645:
+^I }$
ERROR: code indent should never use tabs
#13684: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13646:
+^I break;$
ERROR: code indent should never use tabs
#13685: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13647:
+^Icase 2:$
ERROR: code indent should never use tabs
#13686: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13648:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13686: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13648:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13687: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13649:
+^I {$
ERROR: code indent should never use tabs
#13688: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13650:
+^I case 8:$
ERROR: code indent should never use tabs
#13689: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13651:
+^I return OPCODE_MULL;$
ERROR: code indent should never use tabs
#13690: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13652:
+^I case 12:$
ERROR: code indent should never use tabs
#13691: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13653:
+^I return OPCODE_QUOU;$
ERROR: code indent should never use tabs
#13692: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13654:
+^I case 13:$
ERROR: code indent should never use tabs
#13693: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13655:
+^I return OPCODE_QUOS;$
ERROR: code indent should never use tabs
#13694: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13656:
+^I case 14:$
ERROR: code indent should never use tabs
#13695: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13657:
+^I return OPCODE_REMU;$
ERROR: code indent should never use tabs
#13696: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13658:
+^I case 15:$
ERROR: code indent should never use tabs
#13697: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13659:
+^I return OPCODE_REMS;$
ERROR: code indent should never use tabs
#13698: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13660:
+^I }$
ERROR: code indent should never use tabs
#13699: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13661:
+^I break;$
ERROR: code indent should never use tabs
#13700: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13662:
+^Icase 3:$
ERROR: code indent should never use tabs
#13701: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13663:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13701: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13663:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13702: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13664:
+^I {$
ERROR: code indent should never use tabs
#13703: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13665:
+^I case 0:$
ERROR: code indent should never use tabs
#13704: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13666:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13704: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13666:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13705: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13667:
+^I^I{$
ERROR: code indent should never use tabs
#13706: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13668:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13707: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13669:
+^I^I return OPCODE_RSR_LBEG;$
ERROR: code indent should never use tabs
#13708: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13670:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13709: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13671:
+^I^I return OPCODE_RSR_LEND;$
ERROR: code indent should never use tabs
#13710: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13672:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#13711: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13673:
+^I^I return OPCODE_RSR_LCOUNT;$
ERROR: code indent should never use tabs
#13712: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13674:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13713: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13675:
+^I^I return OPCODE_RSR_SAR;$
ERROR: code indent should never use tabs
#13714: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13676:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#13715: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13677:
+^I^I return OPCODE_RSR_LITBASE;$
ERROR: code indent should never use tabs
#13716: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13678:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#13717: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13679:
+^I^I return OPCODE_RSR_SCOMPARE1;$
ERROR: code indent should never use tabs
#13718: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13680:
+^I^Icase 16:$
ERROR: code indent should never use tabs
#13719: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13681:
+^I^I return OPCODE_RSR_ACCLO;$
ERROR: code indent should never use tabs
#13720: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13682:
+^I^Icase 17:$
ERROR: code indent should never use tabs
#13721: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13683:
+^I^I return OPCODE_RSR_ACCHI;$
ERROR: code indent should never use tabs
#13722: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13684:
+^I^Icase 32:$
ERROR: code indent should never use tabs
#13723: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13685:
+^I^I return OPCODE_RSR_M0;$
ERROR: code indent should never use tabs
#13724: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13686:
+^I^Icase 33:$
ERROR: code indent should never use tabs
#13725: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13687:
+^I^I return OPCODE_RSR_M1;$
ERROR: code indent should never use tabs
#13726: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13688:
+^I^Icase 34:$
ERROR: code indent should never use tabs
#13727: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13689:
+^I^I return OPCODE_RSR_M2;$
ERROR: code indent should never use tabs
#13728: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13690:
+^I^Icase 35:$
ERROR: code indent should never use tabs
#13729: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13691:
+^I^I return OPCODE_RSR_M3;$
ERROR: code indent should never use tabs
#13730: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13692:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#13731: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13693:
+^I^I return OPCODE_RSR_WINDOWBASE;$
ERROR: code indent should never use tabs
#13732: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13694:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#13733: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13695:
+^I^I return OPCODE_RSR_WINDOWSTART;$
ERROR: code indent should never use tabs
#13734: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13696:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#13735: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13697:
+^I^I return OPCODE_RSR_PTEVADDR;$
ERROR: code indent should never use tabs
#13736: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13698:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#13737: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13699:
+^I^I return OPCODE_RSR_RASID;$
ERROR: code indent should never use tabs
#13738: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13700:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#13739: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13701:
+^I^I return OPCODE_RSR_ITLBCFG;$
ERROR: code indent should never use tabs
#13740: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13702:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#13741: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13703:
+^I^I return OPCODE_RSR_DTLBCFG;$
ERROR: code indent should never use tabs
#13742: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13704:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#13743: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13705:
+^I^I return OPCODE_RSR_IBREAKENABLE;$
ERROR: code indent should never use tabs
#13744: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13706:
+^I^Icase 99:$
ERROR: code indent should never use tabs
#13745: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13707:
+^I^I return OPCODE_RSR_ATOMCTL;$
ERROR: code indent should never use tabs
#13746: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13708:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#13747: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13709:
+^I^I return OPCODE_RSR_DDR;$
ERROR: code indent should never use tabs
#13748: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13710:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#13749: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13711:
+^I^I return OPCODE_RSR_IBREAKA0;$
ERROR: code indent should never use tabs
#13750: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13712:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#13751: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13713:
+^I^I return OPCODE_RSR_IBREAKA1;$
ERROR: code indent should never use tabs
#13752: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13714:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#13753: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13715:
+^I^I return OPCODE_RSR_DBREAKA0;$
ERROR: code indent should never use tabs
#13754: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13716:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#13755: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13717:
+^I^I return OPCODE_RSR_DBREAKA1;$
ERROR: code indent should never use tabs
#13756: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13718:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#13757: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13719:
+^I^I return OPCODE_RSR_DBREAKC0;$
ERROR: code indent should never use tabs
#13758: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13720:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#13759: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13721:
+^I^I return OPCODE_RSR_DBREAKC1;$
ERROR: code indent should never use tabs
#13760: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13722:
+^I^Icase 176:$
ERROR: code indent should never use tabs
#13761: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13723:
+^I^I return OPCODE_RSR_176;$
ERROR: code indent should never use tabs
#13762: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13724:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#13763: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13725:
+^I^I return OPCODE_RSR_EPC1;$
ERROR: code indent should never use tabs
#13764: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13726:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#13765: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13727:
+^I^I return OPCODE_RSR_EPC2;$
ERROR: code indent should never use tabs
#13766: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13728:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#13767: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13729:
+^I^I return OPCODE_RSR_EPC3;$
ERROR: code indent should never use tabs
#13768: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13730:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#13769: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13731:
+^I^I return OPCODE_RSR_EPC4;$
ERROR: code indent should never use tabs
#13770: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13732:
+^I^Icase 181:$
ERROR: code indent should never use tabs
#13771: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13733:
+^I^I return OPCODE_RSR_EPC5;$
ERROR: code indent should never use tabs
#13772: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13734:
+^I^Icase 182:$
ERROR: code indent should never use tabs
#13773: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13735:
+^I^I return OPCODE_RSR_EPC6;$
ERROR: code indent should never use tabs
#13774: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13736:
+^I^Icase 183:$
ERROR: code indent should never use tabs
#13775: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13737:
+^I^I return OPCODE_RSR_EPC7;$
ERROR: code indent should never use tabs
#13776: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13738:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#13777: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13739:
+^I^I return OPCODE_RSR_DEPC;$
ERROR: code indent should never use tabs
#13778: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13740:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#13779: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13741:
+^I^I return OPCODE_RSR_EPS2;$
ERROR: code indent should never use tabs
#13780: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13742:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#13781: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13743:
+^I^I return OPCODE_RSR_EPS3;$
ERROR: code indent should never use tabs
#13782: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13744:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#13783: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13745:
+^I^I return OPCODE_RSR_EPS4;$
ERROR: code indent should never use tabs
#13784: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13746:
+^I^Icase 197:$
ERROR: code indent should never use tabs
#13785: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13747:
+^I^I return OPCODE_RSR_EPS5;$
ERROR: code indent should never use tabs
#13786: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13748:
+^I^Icase 198:$
ERROR: code indent should never use tabs
#13787: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13749:
+^I^I return OPCODE_RSR_EPS6;$
ERROR: code indent should never use tabs
#13788: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13750:
+^I^Icase 199:$
ERROR: code indent should never use tabs
#13789: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13751:
+^I^I return OPCODE_RSR_EPS7;$
ERROR: code indent should never use tabs
#13790: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13752:
+^I^Icase 208:$
ERROR: code indent should never use tabs
#13791: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13753:
+^I^I return OPCODE_RSR_208;$
ERROR: code indent should never use tabs
#13792: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13754:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#13793: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13755:
+^I^I return OPCODE_RSR_EXCSAVE1;$
ERROR: code indent should never use tabs
#13794: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13756:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#13795: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13757:
+^I^I return OPCODE_RSR_EXCSAVE2;$
ERROR: code indent should never use tabs
#13796: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13758:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#13797: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13759:
+^I^I return OPCODE_RSR_EXCSAVE3;$
ERROR: code indent should never use tabs
#13798: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13760:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#13799: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13761:
+^I^I return OPCODE_RSR_EXCSAVE4;$
ERROR: code indent should never use tabs
#13800: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13762:
+^I^Icase 213:$
ERROR: code indent should never use tabs
#13801: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13763:
+^I^I return OPCODE_RSR_EXCSAVE5;$
ERROR: code indent should never use tabs
#13802: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13764:
+^I^Icase 214:$
ERROR: code indent should never use tabs
#13803: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13765:
+^I^I return OPCODE_RSR_EXCSAVE6;$
ERROR: code indent should never use tabs
#13804: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13766:
+^I^Icase 215:$
ERROR: code indent should never use tabs
#13805: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13767:
+^I^I return OPCODE_RSR_EXCSAVE7;$
ERROR: code indent should never use tabs
#13806: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13768:
+^I^Icase 224:$
ERROR: code indent should never use tabs
#13807: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13769:
+^I^I return OPCODE_RSR_CPENABLE;$
ERROR: code indent should never use tabs
#13808: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13770:
+^I^Icase 226:$
ERROR: code indent should never use tabs
#13809: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13771:
+^I^I return OPCODE_RSR_INTERRUPT;$
ERROR: code indent should never use tabs
#13810: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13772:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#13811: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13773:
+^I^I return OPCODE_RSR_INTENABLE;$
ERROR: code indent should never use tabs
#13812: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13774:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#13813: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13775:
+^I^I return OPCODE_RSR_PS;$
ERROR: code indent should never use tabs
#13814: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13776:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#13815: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13777:
+^I^I return OPCODE_RSR_VECBASE;$
ERROR: code indent should never use tabs
#13816: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13778:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#13817: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13779:
+^I^I return OPCODE_RSR_EXCCAUSE;$
ERROR: code indent should never use tabs
#13818: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13780:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#13819: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13781:
+^I^I return OPCODE_RSR_DEBUGCAUSE;$
ERROR: code indent should never use tabs
#13820: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13782:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#13821: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13783:
+^I^I return OPCODE_RSR_CCOUNT;$
ERROR: code indent should never use tabs
#13822: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13784:
+^I^Icase 235:$
ERROR: code indent should never use tabs
#13823: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13785:
+^I^I return OPCODE_RSR_PRID;$
ERROR: code indent should never use tabs
#13824: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13786:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#13825: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13787:
+^I^I return OPCODE_RSR_ICOUNT;$
ERROR: code indent should never use tabs
#13826: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13788:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#13827: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13789:
+^I^I return OPCODE_RSR_ICOUNTLEVEL;$
ERROR: code indent should never use tabs
#13828: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13790:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#13829: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13791:
+^I^I return OPCODE_RSR_EXCVADDR;$
ERROR: code indent should never use tabs
#13830: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13792:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#13831: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13793:
+^I^I return OPCODE_RSR_CCOMPARE0;$
ERROR: code indent should never use tabs
#13832: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13794:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#13833: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13795:
+^I^I return OPCODE_RSR_CCOMPARE1;$
ERROR: code indent should never use tabs
#13834: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13796:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#13835: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13797:
+^I^I return OPCODE_RSR_CCOMPARE2;$
ERROR: code indent should never use tabs
#13836: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13798:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#13837: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13799:
+^I^I return OPCODE_RSR_MISC0;$
ERROR: code indent should never use tabs
#13838: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13800:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#13839: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13801:
+^I^I return OPCODE_RSR_MISC1;$
ERROR: code indent should never use tabs
#13840: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13802:
+^I^I}$
ERROR: code indent should never use tabs
#13841: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13803:
+^I break;$
ERROR: code indent should never use tabs
#13842: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13804:
+^I case 1:$
ERROR: code indent should never use tabs
#13843: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13805:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#13843: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13805:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#13844: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13806:
+^I^I{$
ERROR: code indent should never use tabs
#13845: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13807:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#13846: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13808:
+^I^I return OPCODE_WSR_LBEG;$
ERROR: code indent should never use tabs
#13847: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13809:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#13848: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13810:
+^I^I return OPCODE_WSR_LEND;$
ERROR: code indent should never use tabs
#13849: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13811:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#13850: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13812:
+^I^I return OPCODE_WSR_LCOUNT;$
ERROR: code indent should never use tabs
#13851: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13813:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#13852: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13814:
+^I^I return OPCODE_WSR_SAR;$
ERROR: code indent should never use tabs
#13853: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13815:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#13854: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13816:
+^I^I return OPCODE_WSR_LITBASE;$
ERROR: code indent should never use tabs
#13855: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13817:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#13856: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13818:
+^I^I return OPCODE_WSR_SCOMPARE1;$
ERROR: code indent should never use tabs
#13857: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13819:
+^I^Icase 16:$
ERROR: code indent should never use tabs
#13858: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13820:
+^I^I return OPCODE_WSR_ACCLO;$
ERROR: code indent should never use tabs
#13859: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13821:
+^I^Icase 17:$
ERROR: code indent should never use tabs
#13860: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13822:
+^I^I return OPCODE_WSR_ACCHI;$
ERROR: code indent should never use tabs
#13861: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13823:
+^I^Icase 32:$
ERROR: code indent should never use tabs
#13862: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13824:
+^I^I return OPCODE_WSR_M0;$
ERROR: code indent should never use tabs
#13863: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13825:
+^I^Icase 33:$
ERROR: code indent should never use tabs
#13864: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13826:
+^I^I return OPCODE_WSR_M1;$
ERROR: code indent should never use tabs
#13865: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13827:
+^I^Icase 34:$
ERROR: code indent should never use tabs
#13866: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13828:
+^I^I return OPCODE_WSR_M2;$
ERROR: code indent should never use tabs
#13867: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13829:
+^I^Icase 35:$
ERROR: code indent should never use tabs
#13868: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13830:
+^I^I return OPCODE_WSR_M3;$
ERROR: code indent should never use tabs
#13869: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13831:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#13870: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13832:
+^I^I return OPCODE_WSR_WINDOWBASE;$
ERROR: code indent should never use tabs
#13871: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13833:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#13872: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13834:
+^I^I return OPCODE_WSR_WINDOWSTART;$
ERROR: code indent should never use tabs
#13873: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13835:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#13874: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13836:
+^I^I return OPCODE_WSR_PTEVADDR;$
ERROR: code indent should never use tabs
#13875: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13837:
+^I^Icase 89:$
ERROR: code indent should never use tabs
#13876: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13838:
+^I^I return OPCODE_WSR_MMID;$
ERROR: code indent should never use tabs
#13877: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13839:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#13878: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13840:
+^I^I return OPCODE_WSR_RASID;$
ERROR: code indent should never use tabs
#13879: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13841:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#13880: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13842:
+^I^I return OPCODE_WSR_ITLBCFG;$
ERROR: code indent should never use tabs
#13881: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13843:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#13882: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13844:
+^I^I return OPCODE_WSR_DTLBCFG;$
ERROR: code indent should never use tabs
#13883: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13845:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#13884: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13846:
+^I^I return OPCODE_WSR_IBREAKENABLE;$
ERROR: code indent should never use tabs
#13885: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13847:
+^I^Icase 99:$
ERROR: code indent should never use tabs
#13886: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13848:
+^I^I return OPCODE_WSR_ATOMCTL;$
ERROR: code indent should never use tabs
#13887: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13849:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#13888: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13850:
+^I^I return OPCODE_WSR_DDR;$
ERROR: code indent should never use tabs
#13889: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13851:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#13890: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13852:
+^I^I return OPCODE_WSR_IBREAKA0;$
ERROR: code indent should never use tabs
#13891: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13853:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#13892: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13854:
+^I^I return OPCODE_WSR_IBREAKA1;$
ERROR: code indent should never use tabs
#13893: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13855:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#13894: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13856:
+^I^I return OPCODE_WSR_DBREAKA0;$
ERROR: code indent should never use tabs
#13895: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13857:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#13896: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13858:
+^I^I return OPCODE_WSR_DBREAKA1;$
ERROR: code indent should never use tabs
#13897: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13859:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#13898: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13860:
+^I^I return OPCODE_WSR_DBREAKC0;$
ERROR: code indent should never use tabs
#13899: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13861:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#13900: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13862:
+^I^I return OPCODE_WSR_DBREAKC1;$
ERROR: code indent should never use tabs
#13901: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13863:
+^I^Icase 176:$
ERROR: code indent should never use tabs
#13902: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13864:
+^I^I return OPCODE_WSR_176;$
ERROR: code indent should never use tabs
#13903: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13865:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#13904: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13866:
+^I^I return OPCODE_WSR_EPC1;$
ERROR: code indent should never use tabs
#13905: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13867:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#13906: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13868:
+^I^I return OPCODE_WSR_EPC2;$
ERROR: code indent should never use tabs
#13907: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13869:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#13908: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13870:
+^I^I return OPCODE_WSR_EPC3;$
ERROR: code indent should never use tabs
#13909: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13871:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#13910: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13872:
+^I^I return OPCODE_WSR_EPC4;$
ERROR: code indent should never use tabs
#13911: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13873:
+^I^Icase 181:$
ERROR: code indent should never use tabs
#13912: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13874:
+^I^I return OPCODE_WSR_EPC5;$
ERROR: code indent should never use tabs
#13913: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13875:
+^I^Icase 182:$
ERROR: code indent should never use tabs
#13914: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13876:
+^I^I return OPCODE_WSR_EPC6;$
ERROR: code indent should never use tabs
#13915: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13877:
+^I^Icase 183:$
ERROR: code indent should never use tabs
#13916: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13878:
+^I^I return OPCODE_WSR_EPC7;$
ERROR: code indent should never use tabs
#13917: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13879:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#13918: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13880:
+^I^I return OPCODE_WSR_DEPC;$
ERROR: code indent should never use tabs
#13919: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13881:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#13920: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13882:
+^I^I return OPCODE_WSR_EPS2;$
ERROR: code indent should never use tabs
#13921: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13883:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#13922: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13884:
+^I^I return OPCODE_WSR_EPS3;$
ERROR: code indent should never use tabs
#13923: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13885:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#13924: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13886:
+^I^I return OPCODE_WSR_EPS4;$
ERROR: code indent should never use tabs
#13925: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13887:
+^I^Icase 197:$
ERROR: code indent should never use tabs
#13926: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13888:
+^I^I return OPCODE_WSR_EPS5;$
ERROR: code indent should never use tabs
#13927: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13889:
+^I^Icase 198:$
ERROR: code indent should never use tabs
#13928: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13890:
+^I^I return OPCODE_WSR_EPS6;$
ERROR: code indent should never use tabs
#13929: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13891:
+^I^Icase 199:$
ERROR: code indent should never use tabs
#13930: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13892:
+^I^I return OPCODE_WSR_EPS7;$
ERROR: code indent should never use tabs
#13931: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13893:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#13932: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13894:
+^I^I return OPCODE_WSR_EXCSAVE1;$
ERROR: code indent should never use tabs
#13933: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13895:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#13934: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13896:
+^I^I return OPCODE_WSR_EXCSAVE2;$
ERROR: code indent should never use tabs
#13935: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13897:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#13936: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13898:
+^I^I return OPCODE_WSR_EXCSAVE3;$
ERROR: code indent should never use tabs
#13937: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13899:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#13938: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13900:
+^I^I return OPCODE_WSR_EXCSAVE4;$
ERROR: code indent should never use tabs
#13939: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13901:
+^I^Icase 213:$
ERROR: code indent should never use tabs
#13940: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13902:
+^I^I return OPCODE_WSR_EXCSAVE5;$
ERROR: code indent should never use tabs
#13941: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13903:
+^I^Icase 214:$
ERROR: code indent should never use tabs
#13942: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13904:
+^I^I return OPCODE_WSR_EXCSAVE6;$
ERROR: code indent should never use tabs
#13943: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13905:
+^I^Icase 215:$
ERROR: code indent should never use tabs
#13944: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13906:
+^I^I return OPCODE_WSR_EXCSAVE7;$
ERROR: code indent should never use tabs
#13945: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13907:
+^I^Icase 224:$
ERROR: code indent should never use tabs
#13946: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13908:
+^I^I return OPCODE_WSR_CPENABLE;$
ERROR: code indent should never use tabs
#13947: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13909:
+^I^Icase 226:$
ERROR: code indent should never use tabs
#13948: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13910:
+^I^I return OPCODE_WSR_INTSET;$
ERROR: code indent should never use tabs
#13949: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13911:
+^I^Icase 227:$
ERROR: code indent should never use tabs
#13950: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13912:
+^I^I return OPCODE_WSR_INTCLEAR;$
ERROR: code indent should never use tabs
#13951: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13913:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#13952: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13914:
+^I^I return OPCODE_WSR_INTENABLE;$
ERROR: code indent should never use tabs
#13953: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13915:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#13954: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13916:
+^I^I return OPCODE_WSR_PS;$
ERROR: code indent should never use tabs
#13955: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13917:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#13956: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13918:
+^I^I return OPCODE_WSR_VECBASE;$
ERROR: code indent should never use tabs
#13957: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13919:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#13958: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13920:
+^I^I return OPCODE_WSR_EXCCAUSE;$
ERROR: code indent should never use tabs
#13959: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13921:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#13960: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13922:
+^I^I return OPCODE_WSR_DEBUGCAUSE;$
ERROR: code indent should never use tabs
#13961: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13923:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#13962: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13924:
+^I^I return OPCODE_WSR_CCOUNT;$
ERROR: code indent should never use tabs
#13963: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13925:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#13964: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13926:
+^I^I return OPCODE_WSR_ICOUNT;$
ERROR: code indent should never use tabs
#13965: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13927:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#13966: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13928:
+^I^I return OPCODE_WSR_ICOUNTLEVEL;$
ERROR: code indent should never use tabs
#13967: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13929:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#13968: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13930:
+^I^I return OPCODE_WSR_EXCVADDR;$
ERROR: code indent should never use tabs
#13969: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13931:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#13970: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13932:
+^I^I return OPCODE_WSR_CCOMPARE0;$
ERROR: code indent should never use tabs
#13971: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13933:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#13972: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13934:
+^I^I return OPCODE_WSR_CCOMPARE1;$
ERROR: code indent should never use tabs
#13973: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13935:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#13974: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13936:
+^I^I return OPCODE_WSR_CCOMPARE2;$
ERROR: code indent should never use tabs
#13975: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13937:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#13976: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13938:
+^I^I return OPCODE_WSR_MISC0;$
ERROR: code indent should never use tabs
#13977: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13939:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#13978: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13940:
+^I^I return OPCODE_WSR_MISC1;$
ERROR: code indent should never use tabs
#13979: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13941:
+^I^I}$
ERROR: code indent should never use tabs
#13980: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13942:
+^I break;$
ERROR: code indent should never use tabs
#13981: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13943:
+^I case 2:$
ERROR: code indent should never use tabs
#13982: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13944:
+^I return OPCODE_SEXT;$
ERROR: code indent should never use tabs
#13983: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13945:
+^I case 3:$
ERROR: code indent should never use tabs
#13984: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13946:
+^I return OPCODE_CLAMPS;$
ERROR: code indent should never use tabs
#13985: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13947:
+^I case 4:$
ERROR: code indent should never use tabs
#13986: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13948:
+^I return OPCODE_MIN;$
ERROR: code indent should never use tabs
#13987: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13949:
+^I case 5:$
ERROR: code indent should never use tabs
#13988: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13950:
+^I return OPCODE_MAX;$
ERROR: code indent should never use tabs
#13989: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13951:
+^I case 6:$
ERROR: code indent should never use tabs
#13990: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13952:
+^I return OPCODE_MINU;$
ERROR: code indent should never use tabs
#13991: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13953:
+^I case 7:$
ERROR: code indent should never use tabs
#13992: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13954:
+^I return OPCODE_MAXU;$
ERROR: code indent should never use tabs
#13993: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13955:
+^I case 8:$
ERROR: code indent should never use tabs
#13994: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13956:
+^I return OPCODE_MOVEQZ;$
ERROR: code indent should never use tabs
#13995: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13957:
+^I case 9:$
ERROR: code indent should never use tabs
#13996: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13958:
+^I return OPCODE_MOVNEZ;$
ERROR: code indent should never use tabs
#13997: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13959:
+^I case 10:$
ERROR: code indent should never use tabs
#13998: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13960:
+^I return OPCODE_MOVLTZ;$
ERROR: code indent should never use tabs
#13999: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13961:
+^I case 11:$
ERROR: code indent should never use tabs
#14000: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13962:
+^I return OPCODE_MOVGEZ;$
ERROR: code indent should never use tabs
#14001: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13963:
+^I case 14:$
ERROR: code indent should never use tabs
#14002: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13964:
+^I switch (Field_st_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14002: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13964:
+ switch (Field_st_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14003: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13965:
+^I^I{$
ERROR: code indent should never use tabs
#14004: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13966:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#14005: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13967:
+^I^I return OPCODE_RUR_EXPSTATE;$
ERROR: code indent should never use tabs
#14006: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13968:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#14007: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13969:
+^I^I return OPCODE_RUR_THREADPTR;$
ERROR: code indent should never use tabs
#14008: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13970:
+^I^I}$
ERROR: code indent should never use tabs
#14009: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13971:
+^I break;$
ERROR: code indent should never use tabs
#14010: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13972:
+^I case 15:$
ERROR: code indent should never use tabs
#14011: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13973:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14011: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13973:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14012: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13974:
+^I^I{$
ERROR: code indent should never use tabs
#14013: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13975:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#14014: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13976:
+^I^I return OPCODE_WUR_EXPSTATE;$
ERROR: code indent should never use tabs
#14015: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13977:
+^I^Icase 231:$
ERROR: code indent should never use tabs
#14016: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13978:
+^I^I return OPCODE_WUR_THREADPTR;$
ERROR: code indent should never use tabs
#14017: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13979:
+^I^I}$
ERROR: code indent should never use tabs
#14018: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13980:
+^I break;$
ERROR: code indent should never use tabs
#14019: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13981:
+^I }$
ERROR: code indent should never use tabs
#14020: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13982:
+^I break;$
ERROR: code indent should never use tabs
#14021: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13983:
+^Icase 4:$
ERROR: code indent should never use tabs
#14022: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13984:
+^Icase 5:$
ERROR: code indent should never use tabs
#14023: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13985:
+^I return OPCODE_EXTUI;$
ERROR: code indent should never use tabs
#14024: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13986:
+^Icase 9:$
ERROR: code indent should never use tabs
#14025: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13987:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14025: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13987:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14026: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13988:
+^I {$
ERROR: code indent should never use tabs
#14027: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13989:
+^I case 0:$
ERROR: code indent should never use tabs
#14028: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13990:
+^I return OPCODE_L32E;$
ERROR: code indent should never use tabs
#14029: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13991:
+^I case 4:$
ERROR: code indent should never use tabs
#14030: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13992:
+^I return OPCODE_S32E;$
ERROR: code indent should never use tabs
#14031: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13993:
+^I }$
ERROR: code indent should never use tabs
#14032: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13994:
+^I break;$
ERROR: code indent should never use tabs
#14033: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13995:
+^I}$
ERROR: that open brace { should be on the previous line
#14034: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13996:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14035: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13997:
+^I{$
ERROR: code indent should never use tabs
#14036: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13998:
+^Icase 0:$
ERROR: code indent should never use tabs
#14037: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13999:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14037: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13999:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14038: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14000:
+^I Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14039: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14001:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#14040: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14002:
+^I return OPCODE_READ_IMPWIRE;$
ERROR: code indent should never use tabs
#14041: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14003:
+^I break;$
ERROR: code indent should never use tabs
#14042: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14004:
+^Icase 1:$
ERROR: code indent should never use tabs
#14043: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14005:
+^I if (Field_s3to1_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14043: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14005:
+ if (Field_s3to1_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14044: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14006:
+^I Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14045: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14007:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#14046: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14008:
+^I return OPCODE_SETB_EXPSTATE;$
ERROR: code indent should never use tabs
#14047: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14009:
+^I if (Field_s3to1_Slot_inst_get (insn) == 1 &&$
ERROR: braces {} are necessary for all arms of this statement
#14047: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14009:
+ if (Field_s3to1_Slot_inst_get (insn) == 1 &&
[...]
ERROR: code indent should never use tabs
#14048: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14010:
+^I Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14049: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14011:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#14050: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14012:
+^I return OPCODE_CLRB_EXPSTATE;$
ERROR: code indent should never use tabs
#14051: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14013:
+^I break;$
ERROR: code indent should never use tabs
#14052: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14014:
+^Icase 2:$
ERROR: code indent should never use tabs
#14053: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14015:
+^I if (Field_op2_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14053: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14015:
+ if (Field_op2_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14054: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14016:
+^I Field_op1_Slot_inst_get (insn) == 14)$
ERROR: code indent should never use tabs
#14055: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14017:
+^I return OPCODE_WRMSK_EXPSTATE;$
ERROR: code indent should never use tabs
#14056: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14018:
+^I break;$
ERROR: code indent should never use tabs
#14057: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14019:
+^I}$
ERROR: that open brace { should be on the previous line
#14062: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14024:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14063: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14025:
+^I{$
ERROR: code indent should never use tabs
#14064: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14026:
+^Icase 0:$
ERROR: code indent should never use tabs
#14065: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14027:
+^I return OPCODE_L8UI;$
ERROR: code indent should never use tabs
#14066: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14028:
+^Icase 1:$
ERROR: code indent should never use tabs
#14067: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14029:
+^I return OPCODE_L16UI;$
ERROR: code indent should never use tabs
#14068: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14030:
+^Icase 2:$
ERROR: code indent should never use tabs
#14069: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14031:
+^I return OPCODE_L32I;$
ERROR: code indent should never use tabs
#14070: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14032:
+^Icase 4:$
ERROR: code indent should never use tabs
#14071: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14033:
+^I return OPCODE_S8I;$
ERROR: code indent should never use tabs
#14072: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14034:
+^Icase 5:$
ERROR: code indent should never use tabs
#14073: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14035:
+^I return OPCODE_S16I;$
ERROR: code indent should never use tabs
#14074: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14036:
+^Icase 6:$
ERROR: code indent should never use tabs
#14075: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14037:
+^I return OPCODE_S32I;$
ERROR: code indent should never use tabs
#14076: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14038:
+^Icase 7:$
ERROR: code indent should never use tabs
#14077: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14039:
+^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14077: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14039:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14078: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14040:
+^I {$
ERROR: code indent should never use tabs
#14079: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14041:
+^I case 0:$
ERROR: code indent should never use tabs
#14080: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14042:
+^I return OPCODE_DPFR;$
ERROR: code indent should never use tabs
#14081: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14043:
+^I case 1:$
ERROR: code indent should never use tabs
#14082: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14044:
+^I return OPCODE_DPFW;$
ERROR: code indent should never use tabs
#14083: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14045:
+^I case 2:$
ERROR: code indent should never use tabs
#14084: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14046:
+^I return OPCODE_DPFRO;$
ERROR: code indent should never use tabs
#14085: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14047:
+^I case 3:$
ERROR: code indent should never use tabs
#14086: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14048:
+^I return OPCODE_DPFWO;$
ERROR: code indent should never use tabs
#14087: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14049:
+^I case 4:$
ERROR: code indent should never use tabs
#14088: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14050:
+^I return OPCODE_DHWB;$
ERROR: code indent should never use tabs
#14089: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14051:
+^I case 5:$
ERROR: code indent should never use tabs
#14090: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14052:
+^I return OPCODE_DHWBI;$
ERROR: code indent should never use tabs
#14091: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14053:
+^I case 6:$
ERROR: code indent should never use tabs
#14092: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14054:
+^I return OPCODE_DHI;$
ERROR: code indent should never use tabs
#14093: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14055:
+^I case 7:$
ERROR: code indent should never use tabs
#14094: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14056:
+^I return OPCODE_DII;$
ERROR: code indent should never use tabs
#14095: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14057:
+^I case 8:$
ERROR: code indent should never use tabs
#14096: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14058:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14096: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14058:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14097: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14059:
+^I^I{$
ERROR: code indent should never use tabs
#14098: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14060:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#14099: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14061:
+^I^I return OPCODE_DPFL;$
ERROR: code indent should never use tabs
#14100: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14062:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#14101: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14063:
+^I^I return OPCODE_DHU;$
ERROR: code indent should never use tabs
#14102: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14064:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#14103: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14065:
+^I^I return OPCODE_DIU;$
ERROR: code indent should never use tabs
#14104: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14066:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#14105: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14067:
+^I^I return OPCODE_DIWB;$
ERROR: code indent should never use tabs
#14106: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14068:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#14107: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14069:
+^I^I return OPCODE_DIWBI;$
ERROR: code indent should never use tabs
#14108: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14070:
+^I^I}$
ERROR: code indent should never use tabs
#14109: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14071:
+^I break;$
ERROR: code indent should never use tabs
#14110: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14072:
+^I case 12:$
ERROR: code indent should never use tabs
#14111: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14073:
+^I return OPCODE_IPF;$
ERROR: code indent should never use tabs
#14112: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14074:
+^I case 13:$
ERROR: code indent should never use tabs
#14113: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14075:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14113: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14075:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14114: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14076:
+^I^I{$
ERROR: code indent should never use tabs
#14115: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14077:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#14116: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14078:
+^I^I return OPCODE_IPFL;$
ERROR: code indent should never use tabs
#14117: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14079:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#14118: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14080:
+^I^I return OPCODE_IHU;$
ERROR: code indent should never use tabs
#14119: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14081:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#14120: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14082:
+^I^I return OPCODE_IIU;$
ERROR: code indent should never use tabs
#14121: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14083:
+^I^I}$
ERROR: code indent should never use tabs
#14122: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14084:
+^I break;$
ERROR: code indent should never use tabs
#14123: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14085:
+^I case 14:$
ERROR: code indent should never use tabs
#14124: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14086:
+^I return OPCODE_IHI;$
ERROR: code indent should never use tabs
#14125: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14087:
+^I case 15:$
ERROR: code indent should never use tabs
#14126: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14088:
+^I return OPCODE_III;$
ERROR: code indent should never use tabs
#14127: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14089:
+^I }$
ERROR: code indent should never use tabs
#14128: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14090:
+^I break;$
ERROR: code indent should never use tabs
#14129: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14091:
+^Icase 9:$
ERROR: code indent should never use tabs
#14130: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14092:
+^I return OPCODE_L16SI;$
ERROR: code indent should never use tabs
#14131: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14093:
+^Icase 10:$
ERROR: code indent should never use tabs
#14132: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14094:
+^I return OPCODE_MOVI;$
ERROR: code indent should never use tabs
#14133: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14095:
+^Icase 11:$
ERROR: code indent should never use tabs
#14134: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14096:
+^I return OPCODE_L32AI;$
ERROR: code indent should never use tabs
#14135: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14097:
+^Icase 12:$
ERROR: code indent should never use tabs
#14136: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14098:
+^I return OPCODE_ADDI;$
ERROR: code indent should never use tabs
#14137: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14099:
+^Icase 13:$
ERROR: code indent should never use tabs
#14138: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14100:
+^I return OPCODE_ADDMI;$
ERROR: code indent should never use tabs
#14139: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14101:
+^Icase 14:$
ERROR: code indent should never use tabs
#14140: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14102:
+^I return OPCODE_S32C1I;$
ERROR: code indent should never use tabs
#14141: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14103:
+^Icase 15:$
ERROR: code indent should never use tabs
#14142: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14104:
+^I return OPCODE_S32RI;$
ERROR: code indent should never use tabs
#14143: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14105:
+^I}$
ERROR: that open brace { should be on the previous line
#14146: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14108:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14147: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14109:
+^I{$
ERROR: code indent should never use tabs
#14148: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14110:
+^Icase 0:$
ERROR: code indent should never use tabs
#14149: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14111:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14149: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14111:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14150: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14112:
+^I {$
ERROR: code indent should never use tabs
#14151: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14113:
+^I case 8:$
ERROR: code indent should never use tabs
#14152: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14114:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14152: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14114:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14153: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14115:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14154: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14116:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14155: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14117:
+^I^Ireturn OPCODE_MULA_DD_LL_LDINC;$
ERROR: code indent should never use tabs
#14156: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14118:
+^I break;$
ERROR: code indent should never use tabs
#14157: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14119:
+^I case 9:$
ERROR: code indent should never use tabs
#14158: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14120:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14158: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14120:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14159: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14121:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14160: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14122:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14161: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14123:
+^I^Ireturn OPCODE_MULA_DD_HL_LDINC;$
ERROR: code indent should never use tabs
#14162: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14124:
+^I break;$
ERROR: code indent should never use tabs
#14163: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14125:
+^I case 10:$
ERROR: code indent should never use tabs
#14164: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14126:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14164: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14126:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14165: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14127:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14166: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14128:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14167: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14129:
+^I^Ireturn OPCODE_MULA_DD_LH_LDINC;$
ERROR: code indent should never use tabs
#14168: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14130:
+^I break;$
ERROR: code indent should never use tabs
#14169: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14131:
+^I case 11:$
ERROR: code indent should never use tabs
#14170: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14132:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14170: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14132:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14171: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14133:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14172: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14134:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14173: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14135:
+^I^Ireturn OPCODE_MULA_DD_HH_LDINC;$
ERROR: code indent should never use tabs
#14174: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14136:
+^I break;$
ERROR: code indent should never use tabs
#14175: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14137:
+^I }$
ERROR: code indent should never use tabs
#14176: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14138:
+^I break;$
ERROR: code indent should never use tabs
#14177: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14139:
+^Icase 1:$
ERROR: code indent should never use tabs
#14178: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14140:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14178: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14140:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14179: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14141:
+^I {$
ERROR: code indent should never use tabs
#14180: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14142:
+^I case 8:$
ERROR: code indent should never use tabs
#14181: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14143:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14181: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14143:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14182: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14144:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14183: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14145:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14184: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14146:
+^I^Ireturn OPCODE_MULA_DD_LL_LDDEC;$
ERROR: code indent should never use tabs
#14185: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14147:
+^I break;$
ERROR: code indent should never use tabs
#14186: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14148:
+^I case 9:$
ERROR: code indent should never use tabs
#14187: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14149:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14187: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14149:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14188: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14150:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14189: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14151:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14190: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14152:
+^I^Ireturn OPCODE_MULA_DD_HL_LDDEC;$
ERROR: code indent should never use tabs
#14191: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14153:
+^I break;$
ERROR: code indent should never use tabs
#14192: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14154:
+^I case 10:$
ERROR: code indent should never use tabs
#14193: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14155:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14193: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14155:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14194: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14156:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14195: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14157:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14196: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14158:
+^I^Ireturn OPCODE_MULA_DD_LH_LDDEC;$
ERROR: code indent should never use tabs
#14197: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14159:
+^I break;$
ERROR: code indent should never use tabs
#14198: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14160:
+^I case 11:$
ERROR: code indent should never use tabs
#14199: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14161:
+^I if (Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14199: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14161:
+ if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14200: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14162:
+^I^I Field_tlo_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14201: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14163:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14202: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14164:
+^I^Ireturn OPCODE_MULA_DD_HH_LDDEC;$
ERROR: code indent should never use tabs
#14203: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14165:
+^I break;$
ERROR: code indent should never use tabs
#14204: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14166:
+^I }$
ERROR: code indent should never use tabs
#14205: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14167:
+^I break;$
ERROR: code indent should never use tabs
#14206: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14168:
+^Icase 2:$
ERROR: code indent should never use tabs
#14207: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14169:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14207: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14169:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14208: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14170:
+^I {$
ERROR: code indent should never use tabs
#14209: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14171:
+^I case 4:$
ERROR: code indent should never use tabs
#14210: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14172:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14210: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14172:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14211: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14173:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14212: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14174:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14213: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14175:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14214: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14176:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14215: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14177:
+^I^Ireturn OPCODE_MUL_DD_LL;$
ERROR: code indent should never use tabs
#14216: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14178:
+^I break;$
ERROR: code indent should never use tabs
#14217: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14179:
+^I case 5:$
ERROR: code indent should never use tabs
#14218: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14180:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14218: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14180:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14219: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14181:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14220: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14182:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14221: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14183:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14222: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14184:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14223: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14185:
+^I^Ireturn OPCODE_MUL_DD_HL;$
ERROR: code indent should never use tabs
#14224: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14186:
+^I break;$
ERROR: code indent should never use tabs
#14225: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14187:
+^I case 6:$
ERROR: code indent should never use tabs
#14226: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14188:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14226: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14188:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14227: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14189:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14228: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14190:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14229: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14191:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14230: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14192:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14231: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14193:
+^I^Ireturn OPCODE_MUL_DD_LH;$
ERROR: code indent should never use tabs
#14232: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14194:
+^I break;$
ERROR: code indent should never use tabs
#14233: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14195:
+^I case 7:$
ERROR: code indent should never use tabs
#14234: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14196:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14234: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14196:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14235: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14197:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14236: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14198:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14237: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14199:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14238: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14200:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14239: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14201:
+^I^Ireturn OPCODE_MUL_DD_HH;$
ERROR: code indent should never use tabs
#14240: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14202:
+^I break;$
ERROR: code indent should never use tabs
#14241: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14203:
+^I case 8:$
ERROR: code indent should never use tabs
#14242: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14204:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14242: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14204:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14243: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14205:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14244: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14206:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14245: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14207:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14246: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14208:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14247: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14209:
+^I^Ireturn OPCODE_MULA_DD_LL;$
ERROR: code indent should never use tabs
#14248: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14210:
+^I break;$
ERROR: code indent should never use tabs
#14249: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14211:
+^I case 9:$
ERROR: code indent should never use tabs
#14250: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14212:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14250: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14212:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14251: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14213:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14252: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14214:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14253: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14215:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14254: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14216:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14255: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14217:
+^I^Ireturn OPCODE_MULA_DD_HL;$
ERROR: code indent should never use tabs
#14256: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14218:
+^I break;$
ERROR: code indent should never use tabs
#14257: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14219:
+^I case 10:$
ERROR: code indent should never use tabs
#14258: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14220:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14258: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14220:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14259: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14221:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14260: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14222:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14261: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14223:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14262: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14224:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14263: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14225:
+^I^Ireturn OPCODE_MULA_DD_LH;$
ERROR: code indent should never use tabs
#14264: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14226:
+^I break;$
ERROR: code indent should never use tabs
#14265: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14227:
+^I case 11:$
ERROR: code indent should never use tabs
#14266: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14228:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14266: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14228:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14267: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14229:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14268: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14230:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14269: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14231:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14270: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14232:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14271: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14233:
+^I^Ireturn OPCODE_MULA_DD_HH;$
ERROR: code indent should never use tabs
#14272: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14234:
+^I break;$
ERROR: code indent should never use tabs
#14273: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14235:
+^I case 12:$
ERROR: code indent should never use tabs
#14274: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14236:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14274: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14236:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14275: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14237:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14276: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14238:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14277: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14239:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14278: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14240:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14279: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14241:
+^I^Ireturn OPCODE_MULS_DD_LL;$
ERROR: code indent should never use tabs
#14280: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14242:
+^I break;$
ERROR: code indent should never use tabs
#14281: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14243:
+^I case 13:$
ERROR: code indent should never use tabs
#14282: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14244:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14282: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14244:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14283: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14245:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14284: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14246:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14285: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14247:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14286: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14248:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14287: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14249:
+^I^Ireturn OPCODE_MULS_DD_HL;$
ERROR: code indent should never use tabs
#14288: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14250:
+^I break;$
ERROR: code indent should never use tabs
#14289: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14251:
+^I case 14:$
ERROR: code indent should never use tabs
#14290: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14252:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14290: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14252:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14291: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14253:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14292: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14254:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14293: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14255:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14294: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14256:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14295: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14257:
+^I^Ireturn OPCODE_MULS_DD_LH;$
ERROR: code indent should never use tabs
#14296: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14258:
+^I break;$
ERROR: code indent should never use tabs
#14297: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14259:
+^I case 15:$
ERROR: code indent should never use tabs
#14298: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14260:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14298: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14260:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14299: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14261:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14300: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14262:
+^I^I Field_r3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14301: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14263:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14302: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14264:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14303: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14265:
+^I^Ireturn OPCODE_MULS_DD_HH;$
ERROR: code indent should never use tabs
#14304: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14266:
+^I break;$
ERROR: code indent should never use tabs
#14305: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14267:
+^I }$
ERROR: code indent should never use tabs
#14306: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14268:
+^I break;$
ERROR: code indent should never use tabs
#14307: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14269:
+^Icase 3:$
ERROR: code indent should never use tabs
#14308: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14270:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14308: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14270:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14309: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14271:
+^I {$
ERROR: code indent should never use tabs
#14310: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14272:
+^I case 4:$
ERROR: code indent should never use tabs
#14311: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14273:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14311: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14273:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14312: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14274:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14313: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14275:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14314: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14276:
+^I^Ireturn OPCODE_MUL_AD_LL;$
ERROR: code indent should never use tabs
#14315: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14277:
+^I break;$
ERROR: code indent should never use tabs
#14316: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14278:
+^I case 5:$
ERROR: code indent should never use tabs
#14317: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14279:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14317: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14279:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14318: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14280:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14319: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14281:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14320: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14282:
+^I^Ireturn OPCODE_MUL_AD_HL;$
ERROR: code indent should never use tabs
#14321: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14283:
+^I break;$
ERROR: code indent should never use tabs
#14322: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14284:
+^I case 6:$
ERROR: code indent should never use tabs
#14323: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14285:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14323: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14285:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14324: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14286:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14325: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14287:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14326: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14288:
+^I^Ireturn OPCODE_MUL_AD_LH;$
ERROR: code indent should never use tabs
#14327: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14289:
+^I break;$
ERROR: code indent should never use tabs
#14328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14290:
+^I case 7:$
ERROR: code indent should never use tabs
#14329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14291:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14291:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14330: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14292:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14331: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14293:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14332: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14294:
+^I^Ireturn OPCODE_MUL_AD_HH;$
ERROR: code indent should never use tabs
#14333: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14295:
+^I break;$
ERROR: code indent should never use tabs
#14334: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14296:
+^I case 8:$
ERROR: code indent should never use tabs
#14335: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14297:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14335: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14297:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14336: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14298:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14337: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14299:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14338: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14300:
+^I^Ireturn OPCODE_MULA_AD_LL;$
ERROR: code indent should never use tabs
#14339: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14301:
+^I break;$
ERROR: code indent should never use tabs
#14340: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14302:
+^I case 9:$
ERROR: code indent should never use tabs
#14341: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14303:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14341: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14303:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14342: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14304:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14343: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14305:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14344: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14306:
+^I^Ireturn OPCODE_MULA_AD_HL;$
ERROR: code indent should never use tabs
#14345: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14307:
+^I break;$
ERROR: code indent should never use tabs
#14346: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14308:
+^I case 10:$
ERROR: code indent should never use tabs
#14347: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14309:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14347: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14309:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14348: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14310:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14349: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14311:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14350: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14312:
+^I^Ireturn OPCODE_MULA_AD_LH;$
ERROR: code indent should never use tabs
#14351: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14313:
+^I break;$
ERROR: code indent should never use tabs
#14352: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14314:
+^I case 11:$
ERROR: code indent should never use tabs
#14353: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14315:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14353: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14315:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14354: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14316:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14355: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14317:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14356: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14318:
+^I^Ireturn OPCODE_MULA_AD_HH;$
ERROR: code indent should never use tabs
#14357: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14319:
+^I break;$
ERROR: code indent should never use tabs
#14358: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14320:
+^I case 12:$
ERROR: code indent should never use tabs
#14359: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14321:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14359: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14321:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14360: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14322:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14361: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14323:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14362: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14324:
+^I^Ireturn OPCODE_MULS_AD_LL;$
ERROR: code indent should never use tabs
#14363: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14325:
+^I break;$
ERROR: code indent should never use tabs
#14364: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14326:
+^I case 13:$
ERROR: code indent should never use tabs
#14365: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14327:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14365: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14327:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14366: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14328:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14367: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14329:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14368: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14330:
+^I^Ireturn OPCODE_MULS_AD_HL;$
ERROR: code indent should never use tabs
#14369: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14331:
+^I break;$
ERROR: code indent should never use tabs
#14370: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14332:
+^I case 14:$
ERROR: code indent should never use tabs
#14371: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14333:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14371: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14333:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14372: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14334:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14373: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14335:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14374: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14336:
+^I^Ireturn OPCODE_MULS_AD_LH;$
ERROR: code indent should never use tabs
#14375: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14337:
+^I break;$
ERROR: code indent should never use tabs
#14376: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14338:
+^I case 15:$
ERROR: code indent should never use tabs
#14377: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14339:
+^I if (Field_r_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14377: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14339:
+ if (Field_r_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14378: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14340:
+^I^I Field_t3_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14379: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14341:
+^I^I Field_tlo_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14380: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14342:
+^I^Ireturn OPCODE_MULS_AD_HH;$
ERROR: code indent should never use tabs
#14381: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14343:
+^I break;$
ERROR: code indent should never use tabs
#14382: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14344:
+^I }$
ERROR: code indent should never use tabs
#14383: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14345:
+^I break;$
ERROR: code indent should never use tabs
#14384: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14346:
+^Icase 4:$
ERROR: code indent should never use tabs
#14385: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14347:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14385: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14347:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14386: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14348:
+^I {$
ERROR: code indent should never use tabs
#14387: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14349:
+^I case 8:$
ERROR: code indent should never use tabs
#14388: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14350:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14388: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14350:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14389: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14351:
+^I^Ireturn OPCODE_MULA_DA_LL_LDINC;$
ERROR: code indent should never use tabs
#14390: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14352:
+^I break;$
ERROR: code indent should never use tabs
#14391: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14353:
+^I case 9:$
ERROR: code indent should never use tabs
#14392: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14354:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14392: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14354:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14393: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14355:
+^I^Ireturn OPCODE_MULA_DA_HL_LDINC;$
ERROR: code indent should never use tabs
#14394: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14356:
+^I break;$
ERROR: code indent should never use tabs
#14395: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14357:
+^I case 10:$
ERROR: code indent should never use tabs
#14396: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14358:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14396: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14358:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14397: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14359:
+^I^Ireturn OPCODE_MULA_DA_LH_LDINC;$
ERROR: code indent should never use tabs
#14398: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14360:
+^I break;$
ERROR: code indent should never use tabs
#14399: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14361:
+^I case 11:$
ERROR: code indent should never use tabs
#14400: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14362:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14400: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14362:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14401: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14363:
+^I^Ireturn OPCODE_MULA_DA_HH_LDINC;$
ERROR: code indent should never use tabs
#14402: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14364:
+^I break;$
ERROR: code indent should never use tabs
#14403: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14365:
+^I }$
ERROR: code indent should never use tabs
#14404: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14366:
+^I break;$
ERROR: code indent should never use tabs
#14405: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14367:
+^Icase 5:$
ERROR: code indent should never use tabs
#14406: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14368:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14406: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14368:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14407: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14369:
+^I {$
ERROR: code indent should never use tabs
#14408: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14370:
+^I case 8:$
ERROR: code indent should never use tabs
#14409: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14371:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14409: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14371:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14410: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14372:
+^I^Ireturn OPCODE_MULA_DA_LL_LDDEC;$
ERROR: code indent should never use tabs
#14411: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14373:
+^I break;$
ERROR: code indent should never use tabs
#14412: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14374:
+^I case 9:$
ERROR: code indent should never use tabs
#14413: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14375:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14413: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14375:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14414: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14376:
+^I^Ireturn OPCODE_MULA_DA_HL_LDDEC;$
ERROR: code indent should never use tabs
#14415: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14377:
+^I break;$
ERROR: code indent should never use tabs
#14416: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14378:
+^I case 10:$
ERROR: code indent should never use tabs
#14417: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14379:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14417: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14379:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14418: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14380:
+^I^Ireturn OPCODE_MULA_DA_LH_LDDEC;$
ERROR: code indent should never use tabs
#14419: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14381:
+^I break;$
ERROR: code indent should never use tabs
#14420: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14382:
+^I case 11:$
ERROR: code indent should never use tabs
#14421: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14383:
+^I if (Field_r3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14421: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14383:
+ if (Field_r3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14422: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14384:
+^I^Ireturn OPCODE_MULA_DA_HH_LDDEC;$
ERROR: code indent should never use tabs
#14423: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14385:
+^I break;$
ERROR: code indent should never use tabs
#14424: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14386:
+^I }$
ERROR: code indent should never use tabs
#14425: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14387:
+^I break;$
ERROR: code indent should never use tabs
#14426: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14388:
+^Icase 6:$
ERROR: code indent should never use tabs
#14427: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14389:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14427: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14389:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14428: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14390:
+^I {$
ERROR: code indent should never use tabs
#14429: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14391:
+^I case 4:$
ERROR: code indent should never use tabs
#14430: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14392:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14430: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14392:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14431: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14393:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14432: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14394:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14433: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14395:
+^I^Ireturn OPCODE_MUL_DA_LL;$
ERROR: code indent should never use tabs
#14434: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14396:
+^I break;$
ERROR: code indent should never use tabs
#14435: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14397:
+^I case 5:$
ERROR: code indent should never use tabs
#14436: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14398:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14436: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14398:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14437: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14399:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14438: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14400:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14439: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14401:
+^I^Ireturn OPCODE_MUL_DA_HL;$
ERROR: code indent should never use tabs
#14440: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14402:
+^I break;$
ERROR: code indent should never use tabs
#14441: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14403:
+^I case 6:$
ERROR: code indent should never use tabs
#14442: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14404:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14442: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14404:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14443: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14405:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14444: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14406:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14445: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14407:
+^I^Ireturn OPCODE_MUL_DA_LH;$
ERROR: code indent should never use tabs
#14446: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14408:
+^I break;$
ERROR: code indent should never use tabs
#14447: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14409:
+^I case 7:$
ERROR: code indent should never use tabs
#14448: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14410:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14448: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14410:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14449: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14411:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14450: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14412:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14451: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14413:
+^I^Ireturn OPCODE_MUL_DA_HH;$
ERROR: code indent should never use tabs
#14452: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14414:
+^I break;$
ERROR: code indent should never use tabs
#14453: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14415:
+^I case 8:$
ERROR: code indent should never use tabs
#14454: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14416:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14454: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14416:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14455: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14417:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14456: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14418:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14457: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14419:
+^I^Ireturn OPCODE_MULA_DA_LL;$
ERROR: code indent should never use tabs
#14458: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14420:
+^I break;$
ERROR: code indent should never use tabs
#14459: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14421:
+^I case 9:$
ERROR: code indent should never use tabs
#14460: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14422:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14460: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14422:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14461: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14423:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14462: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14424:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14463: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14425:
+^I^Ireturn OPCODE_MULA_DA_HL;$
ERROR: code indent should never use tabs
#14464: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14426:
+^I break;$
ERROR: code indent should never use tabs
#14465: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14427:
+^I case 10:$
ERROR: code indent should never use tabs
#14466: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14428:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14466: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14428:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14467: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14429:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14468: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14430:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14469: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14431:
+^I^Ireturn OPCODE_MULA_DA_LH;$
ERROR: code indent should never use tabs
#14470: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14432:
+^I break;$
ERROR: code indent should never use tabs
#14471: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14433:
+^I case 11:$
ERROR: code indent should never use tabs
#14472: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14434:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14472: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14434:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14473: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14435:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14474: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14436:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14475: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14437:
+^I^Ireturn OPCODE_MULA_DA_HH;$
ERROR: code indent should never use tabs
#14476: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14438:
+^I break;$
ERROR: code indent should never use tabs
#14477: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14439:
+^I case 12:$
ERROR: code indent should never use tabs
#14478: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14440:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14478: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14440:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14479: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14441:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14480: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14442:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14481: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14443:
+^I^Ireturn OPCODE_MULS_DA_LL;$
ERROR: code indent should never use tabs
#14482: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14444:
+^I break;$
ERROR: code indent should never use tabs
#14483: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14445:
+^I case 13:$
ERROR: code indent should never use tabs
#14484: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14446:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14484: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14446:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14485: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14447:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14486: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14448:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14487: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14449:
+^I^Ireturn OPCODE_MULS_DA_HL;$
ERROR: code indent should never use tabs
#14488: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14450:
+^I break;$
ERROR: code indent should never use tabs
#14489: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14451:
+^I case 14:$
ERROR: code indent should never use tabs
#14490: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14452:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14490: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14452:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14491: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14453:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14492: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14454:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14493: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14455:
+^I^Ireturn OPCODE_MULS_DA_LH;$
ERROR: code indent should never use tabs
#14494: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14456:
+^I break;$
ERROR: code indent should never use tabs
#14495: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14457:
+^I case 15:$
ERROR: code indent should never use tabs
#14496: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14458:
+^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14496: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14458:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14497: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14459:
+^I^I Field_w_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14498: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14460:
+^I^I Field_r3_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14499: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14461:
+^I^Ireturn OPCODE_MULS_DA_HH;$
ERROR: code indent should never use tabs
#14500: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14462:
+^I break;$
ERROR: code indent should never use tabs
#14501: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14463:
+^I }$
ERROR: code indent should never use tabs
#14502: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14464:
+^I break;$
ERROR: code indent should never use tabs
#14503: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14465:
+^Icase 7:$
ERROR: code indent should never use tabs
#14504: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14466:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14504: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14466:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14505: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14467:
+^I {$
ERROR: code indent should never use tabs
#14506: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14468:
+^I case 0:$
ERROR: code indent should never use tabs
#14507: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14469:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14507: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14469:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14508: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14470:
+^I^Ireturn OPCODE_UMUL_AA_LL;$
ERROR: code indent should never use tabs
#14509: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14471:
+^I break;$
ERROR: code indent should never use tabs
#14510: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14472:
+^I case 1:$
ERROR: code indent should never use tabs
#14511: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14473:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14511: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14473:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14512: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14474:
+^I^Ireturn OPCODE_UMUL_AA_HL;$
ERROR: code indent should never use tabs
#14513: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14475:
+^I break;$
ERROR: code indent should never use tabs
#14514: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14476:
+^I case 2:$
ERROR: code indent should never use tabs
#14515: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14477:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14515: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14477:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14516: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14478:
+^I^Ireturn OPCODE_UMUL_AA_LH;$
ERROR: code indent should never use tabs
#14517: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14479:
+^I break;$
ERROR: code indent should never use tabs
#14518: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14480:
+^I case 3:$
ERROR: code indent should never use tabs
#14519: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14481:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14519: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14481:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14520: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14482:
+^I^Ireturn OPCODE_UMUL_AA_HH;$
ERROR: code indent should never use tabs
#14521: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14483:
+^I break;$
ERROR: code indent should never use tabs
#14522: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14484:
+^I case 4:$
ERROR: code indent should never use tabs
#14523: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14485:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14523: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14485:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14524: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14486:
+^I^Ireturn OPCODE_MUL_AA_LL;$
ERROR: code indent should never use tabs
#14525: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14487:
+^I break;$
ERROR: code indent should never use tabs
#14526: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14488:
+^I case 5:$
ERROR: code indent should never use tabs
#14527: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14489:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14527: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14489:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14528: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14490:
+^I^Ireturn OPCODE_MUL_AA_HL;$
ERROR: code indent should never use tabs
#14529: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14491:
+^I break;$
ERROR: code indent should never use tabs
#14530: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14492:
+^I case 6:$
ERROR: code indent should never use tabs
#14531: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14493:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14531: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14493:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14532: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14494:
+^I^Ireturn OPCODE_MUL_AA_LH;$
ERROR: code indent should never use tabs
#14533: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14495:
+^I break;$
ERROR: code indent should never use tabs
#14534: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14496:
+^I case 7:$
ERROR: code indent should never use tabs
#14535: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14497:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14535: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14497:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14536: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14498:
+^I^Ireturn OPCODE_MUL_AA_HH;$
ERROR: code indent should never use tabs
#14537: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14499:
+^I break;$
ERROR: code indent should never use tabs
#14538: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14500:
+^I case 8:$
ERROR: code indent should never use tabs
#14539: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14501:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14539: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14501:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14540: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14502:
+^I^Ireturn OPCODE_MULA_AA_LL;$
ERROR: code indent should never use tabs
#14541: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14503:
+^I break;$
ERROR: code indent should never use tabs
#14542: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14504:
+^I case 9:$
ERROR: code indent should never use tabs
#14543: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14505:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14543: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14505:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14544: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14506:
+^I^Ireturn OPCODE_MULA_AA_HL;$
ERROR: code indent should never use tabs
#14545: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14507:
+^I break;$
ERROR: code indent should never use tabs
#14546: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14508:
+^I case 10:$
ERROR: code indent should never use tabs
#14547: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14509:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14547: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14509:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14548: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14510:
+^I^Ireturn OPCODE_MULA_AA_LH;$
ERROR: code indent should never use tabs
#14549: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14511:
+^I break;$
ERROR: code indent should never use tabs
#14550: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14512:
+^I case 11:$
ERROR: code indent should never use tabs
#14551: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14513:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14551: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14513:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14552: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14514:
+^I^Ireturn OPCODE_MULA_AA_HH;$
ERROR: code indent should never use tabs
#14553: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14515:
+^I break;$
ERROR: code indent should never use tabs
#14554: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14516:
+^I case 12:$
ERROR: code indent should never use tabs
#14555: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14517:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14555: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14517:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14556: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14518:
+^I^Ireturn OPCODE_MULS_AA_LL;$
ERROR: code indent should never use tabs
#14557: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14519:
+^I break;$
ERROR: code indent should never use tabs
#14558: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14520:
+^I case 13:$
ERROR: code indent should never use tabs
#14559: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14521:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14559: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14521:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14560: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14522:
+^I^Ireturn OPCODE_MULS_AA_HL;$
ERROR: code indent should never use tabs
#14561: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14523:
+^I break;$
ERROR: code indent should never use tabs
#14562: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14524:
+^I case 14:$
ERROR: code indent should never use tabs
#14563: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14525:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14563: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14525:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14564: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14526:
+^I^Ireturn OPCODE_MULS_AA_LH;$
ERROR: code indent should never use tabs
#14565: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14527:
+^I break;$
ERROR: code indent should never use tabs
#14566: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14528:
+^I case 15:$
ERROR: code indent should never use tabs
#14567: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14529:
+^I if (Field_r_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14567: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14529:
+ if (Field_r_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14568: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14530:
+^I^Ireturn OPCODE_MULS_AA_HH;$
ERROR: code indent should never use tabs
#14569: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14531:
+^I break;$
ERROR: code indent should never use tabs
#14570: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14532:
+^I }$
ERROR: code indent should never use tabs
#14571: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14533:
+^I break;$
ERROR: code indent should never use tabs
#14572: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14534:
+^Icase 8:$
ERROR: code indent should never use tabs
#14573: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14535:
+^I if (Field_op1_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14573: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14535:
+ if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14574: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14536:
+^I Field_t_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14575: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14537:
+^I Field_rhi_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14576: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14538:
+^I return OPCODE_LDINC;$
ERROR: code indent should never use tabs
#14577: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14539:
+^I break;$
ERROR: code indent should never use tabs
#14578: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14540:
+^Icase 9:$
ERROR: code indent should never use tabs
#14579: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14541:
+^I if (Field_op1_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#14579: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14541:
+ if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#14580: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14542:
+^I Field_t_Slot_inst_get (insn) == 0 &&$
ERROR: code indent should never use tabs
#14581: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14543:
+^I Field_rhi_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#14582: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14544:
+^I return OPCODE_LDDEC;$
ERROR: code indent should never use tabs
#14583: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14545:
+^I break;$
ERROR: code indent should never use tabs
#14584: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14546:
+^I}$
ERROR: that open brace { should be on the previous line
#14587: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14549:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14588: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14550:
+^I{$
ERROR: code indent should never use tabs
#14589: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14551:
+^Icase 0:$
ERROR: code indent should never use tabs
#14590: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14552:
+^I return OPCODE_CALL0;$
ERROR: code indent should never use tabs
#14591: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14553:
+^Icase 1:$
ERROR: code indent should never use tabs
#14592: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14554:
+^I return OPCODE_CALL4;$
ERROR: code indent should never use tabs
#14593: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14555:
+^Icase 2:$
ERROR: code indent should never use tabs
#14594: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14556:
+^I return OPCODE_CALL8;$
ERROR: code indent should never use tabs
#14595: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14557:
+^Icase 3:$
ERROR: code indent should never use tabs
#14596: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14558:
+^I return OPCODE_CALL12;$
ERROR: code indent should never use tabs
#14597: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14559:
+^I}$
ERROR: that open brace { should be on the previous line
#14600: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14562:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14601: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14563:
+^I{$
ERROR: code indent should never use tabs
#14602: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14564:
+^Icase 0:$
ERROR: code indent should never use tabs
#14603: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14565:
+^I return OPCODE_J;$
ERROR: code indent should never use tabs
#14604: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14566:
+^Icase 1:$
ERROR: code indent should never use tabs
#14605: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14567:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14605: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14567:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14606: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14568:
+^I {$
ERROR: code indent should never use tabs
#14607: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14569:
+^I case 0:$
ERROR: code indent should never use tabs
#14608: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14570:
+^I return OPCODE_BEQZ;$
ERROR: code indent should never use tabs
#14609: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14571:
+^I case 1:$
ERROR: code indent should never use tabs
#14610: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14572:
+^I return OPCODE_BNEZ;$
ERROR: code indent should never use tabs
#14611: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14573:
+^I case 2:$
ERROR: code indent should never use tabs
#14612: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14574:
+^I return OPCODE_BLTZ;$
ERROR: code indent should never use tabs
#14613: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14575:
+^I case 3:$
ERROR: code indent should never use tabs
#14614: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14576:
+^I return OPCODE_BGEZ;$
ERROR: code indent should never use tabs
#14615: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14577:
+^I }$
ERROR: code indent should never use tabs
#14616: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14578:
+^I break;$
ERROR: code indent should never use tabs
#14617: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14579:
+^Icase 2:$
ERROR: code indent should never use tabs
#14618: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14580:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14618: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14580:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14619: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14581:
+^I {$
ERROR: code indent should never use tabs
#14620: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14582:
+^I case 0:$
ERROR: code indent should never use tabs
#14621: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14583:
+^I return OPCODE_BEQI;$
ERROR: code indent should never use tabs
#14622: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14584:
+^I case 1:$
ERROR: code indent should never use tabs
#14623: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14585:
+^I return OPCODE_BNEI;$
ERROR: code indent should never use tabs
#14624: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14586:
+^I case 2:$
ERROR: code indent should never use tabs
#14625: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14587:
+^I return OPCODE_BLTI;$
ERROR: code indent should never use tabs
#14626: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14588:
+^I case 3:$
ERROR: code indent should never use tabs
#14627: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14589:
+^I return OPCODE_BGEI;$
ERROR: code indent should never use tabs
#14628: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14590:
+^I }$
ERROR: code indent should never use tabs
#14629: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14591:
+^I break;$
ERROR: code indent should never use tabs
#14630: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14592:
+^Icase 3:$
ERROR: code indent should never use tabs
#14631: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14593:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14631: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14593:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14632: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14594:
+^I {$
ERROR: code indent should never use tabs
#14633: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14595:
+^I case 0:$
ERROR: code indent should never use tabs
#14634: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14596:
+^I return OPCODE_ENTRY;$
ERROR: code indent should never use tabs
#14635: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14597:
+^I case 1:$
ERROR: code indent should never use tabs
#14636: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14598:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#14636: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14598:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14637: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14599:
+^I^I{$
ERROR: code indent should never use tabs
#14638: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14600:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#14639: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14601:
+^I^I return OPCODE_LOOP;$
ERROR: code indent should never use tabs
#14640: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14602:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#14641: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14603:
+^I^I return OPCODE_LOOPNEZ;$
ERROR: code indent should never use tabs
#14642: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14604:
+^I^Icase 10:$
ERROR: code indent should never use tabs
#14643: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14605:
+^I^I return OPCODE_LOOPGTZ;$
ERROR: code indent should never use tabs
#14644: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14606:
+^I^I}$
ERROR: code indent should never use tabs
#14645: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14607:
+^I break;$
ERROR: code indent should never use tabs
#14646: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14608:
+^I case 2:$
ERROR: code indent should never use tabs
#14647: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14609:
+^I return OPCODE_BLTUI;$
ERROR: code indent should never use tabs
#14648: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14610:
+^I case 3:$
ERROR: code indent should never use tabs
#14649: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14611:
+^I return OPCODE_BGEUI;$
ERROR: code indent should never use tabs
#14650: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14612:
+^I }$
ERROR: code indent should never use tabs
#14651: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14613:
+^I break;$
ERROR: code indent should never use tabs
#14652: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14614:
+^I}$
ERROR: that open brace { should be on the previous line
#14655: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14617:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#14656: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14618:
+^I{$
ERROR: code indent should never use tabs
#14657: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14619:
+^Icase 0:$
ERROR: code indent should never use tabs
#14658: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14620:
+^I return OPCODE_BNONE;$
ERROR: code indent should never use tabs
#14659: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14621:
+^Icase 1:$
ERROR: code indent should never use tabs
#14660: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14622:
+^I return OPCODE_BEQ;$
ERROR: code indent should never use tabs
#14661: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14623:
+^Icase 2:$
ERROR: code indent should never use tabs
#14662: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14624:
+^I return OPCODE_BLT;$
ERROR: code indent should never use tabs
#14663: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14625:
+^Icase 3:$
ERROR: code indent should never use tabs
#14664: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14626:
+^I return OPCODE_BLTU;$
ERROR: code indent should never use tabs
#14665: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14627:
+^Icase 4:$
ERROR: code indent should never use tabs
#14666: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14628:
+^I return OPCODE_BALL;$
ERROR: code indent should never use tabs
#14667: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14629:
+^Icase 5:$
ERROR: code indent should never use tabs
#14668: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14630:
+^I return OPCODE_BBC;$
ERROR: code indent should never use tabs
#14669: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14631:
+^Icase 6:$
ERROR: code indent should never use tabs
#14670: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14632:
+^Icase 7:$
ERROR: code indent should never use tabs
#14671: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14633:
+^I return OPCODE_BBCI;$
ERROR: code indent should never use tabs
#14672: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14634:
+^Icase 8:$
ERROR: code indent should never use tabs
#14673: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14635:
+^I return OPCODE_BANY;$
ERROR: code indent should never use tabs
#14674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14636:
+^Icase 9:$
ERROR: code indent should never use tabs
#14675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14637:
+^I return OPCODE_BNE;$
ERROR: code indent should never use tabs
#14676: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14638:
+^Icase 10:$
ERROR: code indent should never use tabs
#14677: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14639:
+^I return OPCODE_BGE;$
ERROR: code indent should never use tabs
#14678: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14640:
+^Icase 11:$
ERROR: code indent should never use tabs
#14679: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14641:
+^I return OPCODE_BGEU;$
ERROR: code indent should never use tabs
#14680: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14642:
+^Icase 12:$
ERROR: code indent should never use tabs
#14681: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14643:
+^I return OPCODE_BNALL;$
ERROR: code indent should never use tabs
#14682: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14644:
+^Icase 13:$
ERROR: code indent should never use tabs
#14683: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14645:
+^I return OPCODE_BBS;$
ERROR: code indent should never use tabs
#14684: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14646:
+^Icase 14:$
ERROR: code indent should never use tabs
#14685: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14647:
+^Icase 15:$
ERROR: code indent should never use tabs
#14686: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14648:
+^I return OPCODE_BBSI;$
ERROR: code indent should never use tabs
#14687: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14649:
+^I}$
ERROR: that open brace { should be on the previous line
#14696: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14658:
+ switch (Field_op0_Slot_inst16b_get (insn))
+ {
ERROR: that open brace { should be on the previous line
#14699: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14661:
+ switch (Field_i_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#14700: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14662:
+^I{$
ERROR: code indent should never use tabs
#14701: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14663:
+^Icase 0:$
ERROR: code indent should never use tabs
#14702: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14664:
+^I return OPCODE_MOVI_N;$
ERROR: code indent should never use tabs
#14703: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14665:
+^Icase 1:$
ERROR: code indent should never use tabs
#14704: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14666:
+^I switch (Field_z_Slot_inst16b_get (insn))$
ERROR: that open brace { should be on the previous line
#14704: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14666:
+ switch (Field_z_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#14705: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14667:
+^I {$
ERROR: code indent should never use tabs
#14706: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14668:
+^I case 0:$
ERROR: code indent should never use tabs
#14707: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14669:
+^I return OPCODE_BEQZ_N;$
ERROR: code indent should never use tabs
#14708: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14670:
+^I case 1:$
ERROR: code indent should never use tabs
#14709: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14671:
+^I return OPCODE_BNEZ_N;$
ERROR: code indent should never use tabs
#14710: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14672:
+^I }$
ERROR: code indent should never use tabs
#14711: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14673:
+^I break;$
ERROR: code indent should never use tabs
#14712: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14674:
+^I}$
ERROR: that open brace { should be on the previous line
#14715: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14677:
+ switch (Field_r_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#14716: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14678:
+^I{$
ERROR: code indent should never use tabs
#14717: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14679:
+^Icase 0:$
ERROR: code indent should never use tabs
#14718: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14680:
+^I return OPCODE_MOV_N;$
ERROR: code indent should never use tabs
#14719: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14681:
+^Icase 15:$
ERROR: code indent should never use tabs
#14720: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14682:
+^I switch (Field_t_Slot_inst16b_get (insn))$
ERROR: that open brace { should be on the previous line
#14720: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14682:
+ switch (Field_t_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#14721: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14683:
+^I {$
ERROR: code indent should never use tabs
#14722: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14684:
+^I case 0:$
ERROR: code indent should never use tabs
#14723: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14685:
+^I return OPCODE_RET_N;$
ERROR: code indent should never use tabs
#14724: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14686:
+^I case 1:$
ERROR: code indent should never use tabs
#14725: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14687:
+^I return OPCODE_RETW_N;$
ERROR: code indent should never use tabs
#14726: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14688:
+^I case 2:$
ERROR: code indent should never use tabs
#14727: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14689:
+^I return OPCODE_BREAK_N;$
ERROR: code indent should never use tabs
#14728: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14690:
+^I case 3:$
ERROR: code indent should never use tabs
#14729: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14691:
+^I if (Field_s_Slot_inst16b_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14729: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14691:
+ if (Field_s_Slot_inst16b_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14730: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14692:
+^I^Ireturn OPCODE_NOP_N;$
ERROR: code indent should never use tabs
#14731: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14693:
+^I break;$
ERROR: code indent should never use tabs
#14732: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14694:
+^I case 6:$
ERROR: code indent should never use tabs
#14733: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14695:
+^I if (Field_s_Slot_inst16b_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#14733: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14695:
+ if (Field_s_Slot_inst16b_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#14734: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14696:
+^I^Ireturn OPCODE_ILL_N;$
ERROR: code indent should never use tabs
#14735: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14697:
+^I break;$
ERROR: code indent should never use tabs
#14736: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14698:
+^I }$
ERROR: code indent should never use tabs
#14737: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14699:
+^I break;$
ERROR: code indent should never use tabs
#14738: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14700:
+^I}$
ERROR: that open brace { should be on the previous line
#14747: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14709:
+ switch (Field_op0_Slot_inst16a_get (insn))
+ {
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#14761: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14723:
+
^
ERROR: trailing whitespace
#14761: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14723:
+^L$
ERROR: code indent should never use tabs
#14766: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14728:
+^I^I^I xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#14773: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14735:
+^I^I^I const xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#14780: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14742:
+^I^I^I^Ixtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#14787: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14749:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#14794: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14756:
+^I^I^I^Ixtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#14801: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14763:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#15181: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15143:
+
^
ERROR: trailing whitespace
#15181: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15143:
+^L$
ERROR: space prohibited between function name and open parenthesis '('
#15216: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15178:
+format_decoder (const xtensa_insnbuf insn)
ERROR: braces {} are necessary for all arms of this statement
#15218: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15180:
+ if ((insn[0] & 0x8) == 0)
[...]
ERROR: braces {} are necessary for all arms of this statement
#15220: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15182:
+ if ((insn[0] & 0xc) == 0x8)
[...]
ERROR: braces {} are necessary for all arms of this statement
#15222: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15184:
+ if ((insn[0] & 0xe) == 0xc)
[...]
ERROR: space prohibited between function name and open parenthesis '('
#15247: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15209:
+length_decoder (const unsigned char *insn)
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#15253: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15215:
+
^
ERROR: trailing whitespace
#15253: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15215:
+^L$
total: 1661 errors, 1 warnings, 15249 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Checking PATCH 8/16: target/xtensa: switch fsf to libisa...
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#69: FILE: target/xtensa/core-fsf/xtensa-modules.c:25:
+
^
ERROR: trailing whitespace
#69: FILE: target/xtensa/core-fsf/xtensa-modules.c:25:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#128: FILE: target/xtensa/core-fsf/xtensa-modules.c:84:
+
^
ERROR: trailing whitespace
#128: FILE: target/xtensa/core-fsf/xtensa-modules.c:84:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#256: FILE: target/xtensa/core-fsf/xtensa-modules.c:212:
+
^
ERROR: trailing whitespace
#256: FILE: target/xtensa/core-fsf/xtensa-modules.c:212:
+^L$
ERROR: code indent should never use tabs
#1224: FILE: target/xtensa/core-fsf/xtensa-modules.c:1180:
+^I^I uint32 val ATTRIBUTE_UNUSED)$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1253: FILE: target/xtensa/core-fsf/xtensa-modules.c:1209:
+
^
ERROR: trailing whitespace
#1253: FILE: target/xtensa/core-fsf/xtensa-modules.c:1209:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1260: FILE: target/xtensa/core-fsf/xtensa-modules.c:1216:
+
^
ERROR: trailing whitespace
#1260: FILE: target/xtensa/core-fsf/xtensa-modules.c:1216:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1267: FILE: target/xtensa/core-fsf/xtensa-modules.c:1223:
+
^
ERROR: trailing whitespace
#1267: FILE: target/xtensa/core-fsf/xtensa-modules.c:1223:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1274: FILE: target/xtensa/core-fsf/xtensa-modules.c:1230:
+
^
ERROR: trailing whitespace
#1274: FILE: target/xtensa/core-fsf/xtensa-modules.c:1230:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1340: FILE: target/xtensa/core-fsf/xtensa-modules.c:1296:
+
^
ERROR: trailing whitespace
#1340: FILE: target/xtensa/core-fsf/xtensa-modules.c:1296:
+^L$
ERROR: line over 90 characters
#1574: FILE: target/xtensa/core-fsf/xtensa-modules.c:1530:
+ simm7_0 = ((((-((((imm7_0 >> 6) & 1)) & (((imm7_0 >> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0;
ERROR: that open brace { should be on the previous line
#1638: FILE: target/xtensa/core-fsf/xtensa-modules.c:1594:
+ switch (ai4const_0)
+ {
ERROR: trailing statements should be on next line
#1640: FILE: target/xtensa/core-fsf/xtensa-modules.c:1596:
+ case 0xffffffff: t_0 = 0; break;
ERROR: trailing statements should be on next line
#1641: FILE: target/xtensa/core-fsf/xtensa-modules.c:1597:
+ case 0x1: t_0 = 0x1; break;
ERROR: trailing statements should be on next line
#1642: FILE: target/xtensa/core-fsf/xtensa-modules.c:1598:
+ case 0x2: t_0 = 0x2; break;
ERROR: trailing statements should be on next line
#1643: FILE: target/xtensa/core-fsf/xtensa-modules.c:1599:
+ case 0x3: t_0 = 0x3; break;
ERROR: trailing statements should be on next line
#1644: FILE: target/xtensa/core-fsf/xtensa-modules.c:1600:
+ case 0x4: t_0 = 0x4; break;
ERROR: trailing statements should be on next line
#1645: FILE: target/xtensa/core-fsf/xtensa-modules.c:1601:
+ case 0x5: t_0 = 0x5; break;
ERROR: trailing statements should be on next line
#1646: FILE: target/xtensa/core-fsf/xtensa-modules.c:1602:
+ case 0x6: t_0 = 0x6; break;
ERROR: trailing statements should be on next line
#1647: FILE: target/xtensa/core-fsf/xtensa-modules.c:1603:
+ case 0x7: t_0 = 0x7; break;
ERROR: trailing statements should be on next line
#1648: FILE: target/xtensa/core-fsf/xtensa-modules.c:1604:
+ case 0x8: t_0 = 0x8; break;
ERROR: trailing statements should be on next line
#1649: FILE: target/xtensa/core-fsf/xtensa-modules.c:1605:
+ case 0x9: t_0 = 0x9; break;
ERROR: trailing statements should be on next line
#1650: FILE: target/xtensa/core-fsf/xtensa-modules.c:1606:
+ case 0xa: t_0 = 0xa; break;
ERROR: trailing statements should be on next line
#1651: FILE: target/xtensa/core-fsf/xtensa-modules.c:1607:
+ case 0xb: t_0 = 0xb; break;
ERROR: trailing statements should be on next line
#1652: FILE: target/xtensa/core-fsf/xtensa-modules.c:1608:
+ case 0xc: t_0 = 0xc; break;
ERROR: trailing statements should be on next line
#1653: FILE: target/xtensa/core-fsf/xtensa-modules.c:1609:
+ case 0xd: t_0 = 0xd; break;
ERROR: trailing statements should be on next line
#1654: FILE: target/xtensa/core-fsf/xtensa-modules.c:1610:
+ case 0xe: t_0 = 0xe; break;
ERROR: trailing statements should be on next line
#1655: FILE: target/xtensa/core-fsf/xtensa-modules.c:1611:
+ default: t_0 = 0xf; break;
ERROR: that open brace { should be on the previous line
#1676: FILE: target/xtensa/core-fsf/xtensa-modules.c:1632:
+ switch (b4const_0)
+ {
ERROR: trailing statements should be on next line
#1678: FILE: target/xtensa/core-fsf/xtensa-modules.c:1634:
+ case 0xffffffff: r_0 = 0; break;
ERROR: trailing statements should be on next line
#1679: FILE: target/xtensa/core-fsf/xtensa-modules.c:1635:
+ case 0x1: r_0 = 0x1; break;
ERROR: trailing statements should be on next line
#1680: FILE: target/xtensa/core-fsf/xtensa-modules.c:1636:
+ case 0x2: r_0 = 0x2; break;
ERROR: trailing statements should be on next line
#1681: FILE: target/xtensa/core-fsf/xtensa-modules.c:1637:
+ case 0x3: r_0 = 0x3; break;
ERROR: trailing statements should be on next line
#1682: FILE: target/xtensa/core-fsf/xtensa-modules.c:1638:
+ case 0x4: r_0 = 0x4; break;
ERROR: trailing statements should be on next line
#1683: FILE: target/xtensa/core-fsf/xtensa-modules.c:1639:
+ case 0x5: r_0 = 0x5; break;
ERROR: trailing statements should be on next line
#1684: FILE: target/xtensa/core-fsf/xtensa-modules.c:1640:
+ case 0x6: r_0 = 0x6; break;
ERROR: trailing statements should be on next line
#1685: FILE: target/xtensa/core-fsf/xtensa-modules.c:1641:
+ case 0x7: r_0 = 0x7; break;
ERROR: trailing statements should be on next line
#1686: FILE: target/xtensa/core-fsf/xtensa-modules.c:1642:
+ case 0x8: r_0 = 0x8; break;
ERROR: trailing statements should be on next line
#1687: FILE: target/xtensa/core-fsf/xtensa-modules.c:1643:
+ case 0xa: r_0 = 0x9; break;
ERROR: trailing statements should be on next line
#1688: FILE: target/xtensa/core-fsf/xtensa-modules.c:1644:
+ case 0xc: r_0 = 0xa; break;
ERROR: trailing statements should be on next line
#1689: FILE: target/xtensa/core-fsf/xtensa-modules.c:1645:
+ case 0x10: r_0 = 0xb; break;
ERROR: trailing statements should be on next line
#1690: FILE: target/xtensa/core-fsf/xtensa-modules.c:1646:
+ case 0x20: r_0 = 0xc; break;
ERROR: trailing statements should be on next line
#1691: FILE: target/xtensa/core-fsf/xtensa-modules.c:1647:
+ case 0x40: r_0 = 0xd; break;
ERROR: trailing statements should be on next line
#1692: FILE: target/xtensa/core-fsf/xtensa-modules.c:1648:
+ case 0x80: r_0 = 0xe; break;
ERROR: trailing statements should be on next line
#1693: FILE: target/xtensa/core-fsf/xtensa-modules.c:1649:
+ default: r_0 = 0xf; break;
ERROR: that open brace { should be on the previous line
#1714: FILE: target/xtensa/core-fsf/xtensa-modules.c:1670:
+ switch (b4constu_0)
+ {
ERROR: trailing statements should be on next line
#1716: FILE: target/xtensa/core-fsf/xtensa-modules.c:1672:
+ case 0x8000: r_0 = 0; break;
ERROR: trailing statements should be on next line
#1717: FILE: target/xtensa/core-fsf/xtensa-modules.c:1673:
+ case 0x10000: r_0 = 0x1; break;
ERROR: trailing statements should be on next line
#1718: FILE: target/xtensa/core-fsf/xtensa-modules.c:1674:
+ case 0x2: r_0 = 0x2; break;
ERROR: trailing statements should be on next line
#1719: FILE: target/xtensa/core-fsf/xtensa-modules.c:1675:
+ case 0x3: r_0 = 0x3; break;
ERROR: trailing statements should be on next line
#1720: FILE: target/xtensa/core-fsf/xtensa-modules.c:1676:
+ case 0x4: r_0 = 0x4; break;
ERROR: trailing statements should be on next line
#1721: FILE: target/xtensa/core-fsf/xtensa-modules.c:1677:
+ case 0x5: r_0 = 0x5; break;
ERROR: trailing statements should be on next line
#1722: FILE: target/xtensa/core-fsf/xtensa-modules.c:1678:
+ case 0x6: r_0 = 0x6; break;
ERROR: trailing statements should be on next line
#1723: FILE: target/xtensa/core-fsf/xtensa-modules.c:1679:
+ case 0x7: r_0 = 0x7; break;
ERROR: trailing statements should be on next line
#1724: FILE: target/xtensa/core-fsf/xtensa-modules.c:1680:
+ case 0x8: r_0 = 0x8; break;
ERROR: trailing statements should be on next line
#1725: FILE: target/xtensa/core-fsf/xtensa-modules.c:1681:
+ case 0xa: r_0 = 0x9; break;
ERROR: trailing statements should be on next line
#1726: FILE: target/xtensa/core-fsf/xtensa-modules.c:1682:
+ case 0xc: r_0 = 0xa; break;
ERROR: trailing statements should be on next line
#1727: FILE: target/xtensa/core-fsf/xtensa-modules.c:1683:
+ case 0x10: r_0 = 0xb; break;
ERROR: trailing statements should be on next line
#1728: FILE: target/xtensa/core-fsf/xtensa-modules.c:1684:
+ case 0x20: r_0 = 0xc; break;
ERROR: trailing statements should be on next line
#1729: FILE: target/xtensa/core-fsf/xtensa-modules.c:1685:
+ case 0x40: r_0 = 0xd; break;
ERROR: trailing statements should be on next line
#1730: FILE: target/xtensa/core-fsf/xtensa-modules.c:1686:
+ case 0x80: r_0 = 0xe; break;
ERROR: trailing statements should be on next line
#1731: FILE: target/xtensa/core-fsf/xtensa-modules.c:1687:
+ default: r_0 = 0xf; break;
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#2305: FILE: target/xtensa/core-fsf/xtensa-modules.c:2261:
+
^
ERROR: trailing whitespace
#2305: FILE: target/xtensa/core-fsf/xtensa-modules.c:2261:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#4857: FILE: target/xtensa/core-fsf/xtensa-modules.c:4813:
+
^
ERROR: trailing whitespace
#4857: FILE: target/xtensa/core-fsf/xtensa-modules.c:4813:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#7770: FILE: target/xtensa/core-fsf/xtensa-modules.c:7726:
+
^
ERROR: trailing whitespace
#7770: FILE: target/xtensa/core-fsf/xtensa-modules.c:7726:
+^L$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#8649: FILE: target/xtensa/core-fsf/xtensa-modules.c:8605:
+
^
ERROR: trailing whitespace
#8649: FILE: target/xtensa/core-fsf/xtensa-modules.c:8605:
+^L$
ERROR: that open brace { should be on the previous line
#8655: FILE: target/xtensa/core-fsf/xtensa-modules.c:8611:
+ switch (Field_op0_Slot_inst_get (insn))
+ {
ERROR: that open brace { should be on the previous line
#8658: FILE: target/xtensa/core-fsf/xtensa-modules.c:8614:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8659: FILE: target/xtensa/core-fsf/xtensa-modules.c:8615:
+^I{$
ERROR: code indent should never use tabs
#8660: FILE: target/xtensa/core-fsf/xtensa-modules.c:8616:
+^Icase 0:$
ERROR: code indent should never use tabs
#8661: FILE: target/xtensa/core-fsf/xtensa-modules.c:8617:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8661: FILE: target/xtensa/core-fsf/xtensa-modules.c:8617:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8662: FILE: target/xtensa/core-fsf/xtensa-modules.c:8618:
+^I {$
ERROR: code indent should never use tabs
#8663: FILE: target/xtensa/core-fsf/xtensa-modules.c:8619:
+^I case 0:$
ERROR: code indent should never use tabs
#8664: FILE: target/xtensa/core-fsf/xtensa-modules.c:8620:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8664: FILE: target/xtensa/core-fsf/xtensa-modules.c:8620:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8665: FILE: target/xtensa/core-fsf/xtensa-modules.c:8621:
+^I^I{$
ERROR: code indent should never use tabs
#8666: FILE: target/xtensa/core-fsf/xtensa-modules.c:8622:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#8667: FILE: target/xtensa/core-fsf/xtensa-modules.c:8623:
+^I^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8667: FILE: target/xtensa/core-fsf/xtensa-modules.c:8623:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8668: FILE: target/xtensa/core-fsf/xtensa-modules.c:8624:
+^I^I {$
ERROR: code indent should never use tabs
#8669: FILE: target/xtensa/core-fsf/xtensa-modules.c:8625:
+^I^I case 0:$
ERROR: code indent should never use tabs
#8670: FILE: target/xtensa/core-fsf/xtensa-modules.c:8626:
+^I^I if (Field_s_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#8670: FILE: target/xtensa/core-fsf/xtensa-modules.c:8626:
+ if (Field_s_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#8671: FILE: target/xtensa/core-fsf/xtensa-modules.c:8627:
+^I^I^I Field_n_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#8672: FILE: target/xtensa/core-fsf/xtensa-modules.c:8628:
+^I^I^Ireturn 77; /* ill */$
ERROR: code indent should never use tabs
#8673: FILE: target/xtensa/core-fsf/xtensa-modules.c:8629:
+^I^I break;$
ERROR: code indent should never use tabs
#8674: FILE: target/xtensa/core-fsf/xtensa-modules.c:8630:
+^I^I case 2:$
ERROR: code indent should never use tabs
#8675: FILE: target/xtensa/core-fsf/xtensa-modules.c:8631:
+^I^I switch (Field_n_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8675: FILE: target/xtensa/core-fsf/xtensa-modules.c:8631:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8676: FILE: target/xtensa/core-fsf/xtensa-modules.c:8632:
+^I^I^I{$
ERROR: code indent should never use tabs
#8677: FILE: target/xtensa/core-fsf/xtensa-modules.c:8633:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#8678: FILE: target/xtensa/core-fsf/xtensa-modules.c:8634:
+^I^I^I return 96; /* ret */$
ERROR: code indent should never use tabs
#8679: FILE: target/xtensa/core-fsf/xtensa-modules.c:8635:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#8680: FILE: target/xtensa/core-fsf/xtensa-modules.c:8636:
+^I^I^I return 14; /* retw */$
ERROR: code indent should never use tabs
#8681: FILE: target/xtensa/core-fsf/xtensa-modules.c:8637:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#8682: FILE: target/xtensa/core-fsf/xtensa-modules.c:8638:
+^I^I^I return 79; /* jx */$
ERROR: code indent should never use tabs
#8683: FILE: target/xtensa/core-fsf/xtensa-modules.c:8639:
+^I^I^I}$
ERROR: code indent should never use tabs
#8684: FILE: target/xtensa/core-fsf/xtensa-modules.c:8640:
+^I^I break;$
ERROR: code indent should never use tabs
#8685: FILE: target/xtensa/core-fsf/xtensa-modules.c:8641:
+^I^I case 3:$
ERROR: code indent should never use tabs
#8686: FILE: target/xtensa/core-fsf/xtensa-modules.c:8642:
+^I^I switch (Field_n_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8686: FILE: target/xtensa/core-fsf/xtensa-modules.c:8642:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8687: FILE: target/xtensa/core-fsf/xtensa-modules.c:8643:
+^I^I^I{$
ERROR: code indent should never use tabs
#8688: FILE: target/xtensa/core-fsf/xtensa-modules.c:8644:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#8689: FILE: target/xtensa/core-fsf/xtensa-modules.c:8645:
+^I^I^I return 75; /* callx0 */$
ERROR: code indent should never use tabs
#8690: FILE: target/xtensa/core-fsf/xtensa-modules.c:8646:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#8691: FILE: target/xtensa/core-fsf/xtensa-modules.c:8647:
+^I^I^I return 10; /* callx4 */$
ERROR: code indent should never use tabs
#8692: FILE: target/xtensa/core-fsf/xtensa-modules.c:8648:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#8693: FILE: target/xtensa/core-fsf/xtensa-modules.c:8649:
+^I^I^I return 9; /* callx8 */$
ERROR: code indent should never use tabs
#8694: FILE: target/xtensa/core-fsf/xtensa-modules.c:8650:
+^I^I^Icase 3:$
ERROR: code indent should never use tabs
#8695: FILE: target/xtensa/core-fsf/xtensa-modules.c:8651:
+^I^I^I return 8; /* callx12 */$
ERROR: code indent should never use tabs
#8696: FILE: target/xtensa/core-fsf/xtensa-modules.c:8652:
+^I^I^I}$
ERROR: code indent should never use tabs
#8697: FILE: target/xtensa/core-fsf/xtensa-modules.c:8653:
+^I^I break;$
ERROR: code indent should never use tabs
#8698: FILE: target/xtensa/core-fsf/xtensa-modules.c:8654:
+^I^I }$
ERROR: code indent should never use tabs
#8699: FILE: target/xtensa/core-fsf/xtensa-modules.c:8655:
+^I^I break;$
ERROR: code indent should never use tabs
#8700: FILE: target/xtensa/core-fsf/xtensa-modules.c:8656:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#8701: FILE: target/xtensa/core-fsf/xtensa-modules.c:8657:
+^I^I return 12; /* movsp */$
ERROR: code indent should never use tabs
#8702: FILE: target/xtensa/core-fsf/xtensa-modules.c:8658:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#8703: FILE: target/xtensa/core-fsf/xtensa-modules.c:8659:
+^I^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: that open brace { should be on the previous line
#8703: FILE: target/xtensa/core-fsf/xtensa-modules.c:8659:
+ if (Field_s_Slot_inst_get (insn) == 0)
+ {
ERROR: suspect code indent for conditional statements (18, 22)
#8703: FILE: target/xtensa/core-fsf/xtensa-modules.c:8659:
+ if (Field_s_Slot_inst_get (insn) == 0)
+ {
ERROR: code indent should never use tabs
#8704: FILE: target/xtensa/core-fsf/xtensa-modules.c:8660:
+^I^I {$
ERROR: code indent should never use tabs
#8705: FILE: target/xtensa/core-fsf/xtensa-modules.c:8661:
+^I^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8705: FILE: target/xtensa/core-fsf/xtensa-modules.c:8661:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8706: FILE: target/xtensa/core-fsf/xtensa-modules.c:8662:
+^I^I^I{$
ERROR: code indent should never use tabs
#8707: FILE: target/xtensa/core-fsf/xtensa-modules.c:8663:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#8708: FILE: target/xtensa/core-fsf/xtensa-modules.c:8664:
+^I^I^I return 114; /* isync */$
ERROR: code indent should never use tabs
#8709: FILE: target/xtensa/core-fsf/xtensa-modules.c:8665:
+^I^I^Icase 1:$
ERROR: code indent should never use tabs
#8710: FILE: target/xtensa/core-fsf/xtensa-modules.c:8666:
+^I^I^I return 115; /* rsync */$
ERROR: code indent should never use tabs
#8711: FILE: target/xtensa/core-fsf/xtensa-modules.c:8667:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#8712: FILE: target/xtensa/core-fsf/xtensa-modules.c:8668:
+^I^I^I return 116; /* esync */$
ERROR: code indent should never use tabs
#8713: FILE: target/xtensa/core-fsf/xtensa-modules.c:8669:
+^I^I^Icase 3:$
ERROR: code indent should never use tabs
#8714: FILE: target/xtensa/core-fsf/xtensa-modules.c:8670:
+^I^I^I return 117; /* dsync */$
ERROR: code indent should never use tabs
#8715: FILE: target/xtensa/core-fsf/xtensa-modules.c:8671:
+^I^I^Icase 8:$
ERROR: code indent should never use tabs
#8716: FILE: target/xtensa/core-fsf/xtensa-modules.c:8672:
+^I^I^I return 0; /* excw */$
ERROR: code indent should never use tabs
#8717: FILE: target/xtensa/core-fsf/xtensa-modules.c:8673:
+^I^I^Icase 12:$
ERROR: code indent should never use tabs
#8718: FILE: target/xtensa/core-fsf/xtensa-modules.c:8674:
+^I^I^I return 112; /* memw */$
ERROR: code indent should never use tabs
#8719: FILE: target/xtensa/core-fsf/xtensa-modules.c:8675:
+^I^I^Icase 13:$
ERROR: code indent should never use tabs
#8720: FILE: target/xtensa/core-fsf/xtensa-modules.c:8676:
+^I^I^I return 113; /* extw */$
ERROR: code indent should never use tabs
#8721: FILE: target/xtensa/core-fsf/xtensa-modules.c:8677:
+^I^I^Icase 15:$
ERROR: code indent should never use tabs
#8722: FILE: target/xtensa/core-fsf/xtensa-modules.c:8678:
+^I^I^I return 95; /* nop */$
ERROR: code indent should never use tabs
#8723: FILE: target/xtensa/core-fsf/xtensa-modules.c:8679:
+^I^I^I}$
ERROR: code indent should never use tabs
#8724: FILE: target/xtensa/core-fsf/xtensa-modules.c:8680:
+^I^I }$
ERROR: code indent should never use tabs
#8725: FILE: target/xtensa/core-fsf/xtensa-modules.c:8681:
+^I^I break;$
ERROR: code indent should never use tabs
#8726: FILE: target/xtensa/core-fsf/xtensa-modules.c:8682:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#8727: FILE: target/xtensa/core-fsf/xtensa-modules.c:8683:
+^I^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8727: FILE: target/xtensa/core-fsf/xtensa-modules.c:8683:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8728: FILE: target/xtensa/core-fsf/xtensa-modules.c:8684:
+^I^I {$
ERROR: code indent should never use tabs
#8729: FILE: target/xtensa/core-fsf/xtensa-modules.c:8685:
+^I^I case 0:$
ERROR: code indent should never use tabs
#8730: FILE: target/xtensa/core-fsf/xtensa-modules.c:8686:
+^I^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8730: FILE: target/xtensa/core-fsf/xtensa-modules.c:8686:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8731: FILE: target/xtensa/core-fsf/xtensa-modules.c:8687:
+^I^I^I{$
ERROR: code indent should never use tabs
#8732: FILE: target/xtensa/core-fsf/xtensa-modules.c:8688:
+^I^I^Icase 0:$
ERROR: code indent should never use tabs
#8733: FILE: target/xtensa/core-fsf/xtensa-modules.c:8689:
+^I^I^I return 1; /* rfe */$
ERROR: code indent should never use tabs
#8734: FILE: target/xtensa/core-fsf/xtensa-modules.c:8690:
+^I^I^Icase 2:$
ERROR: code indent should never use tabs
#8735: FILE: target/xtensa/core-fsf/xtensa-modules.c:8691:
+^I^I^I return 2; /* rfde */$
ERROR: code indent should never use tabs
#8736: FILE: target/xtensa/core-fsf/xtensa-modules.c:8692:
+^I^I^Icase 4:$
ERROR: code indent should never use tabs
#8737: FILE: target/xtensa/core-fsf/xtensa-modules.c:8693:
+^I^I^I return 16; /* rfwo */$
ERROR: code indent should never use tabs
#8738: FILE: target/xtensa/core-fsf/xtensa-modules.c:8694:
+^I^I^Icase 5:$
ERROR: code indent should never use tabs
#8739: FILE: target/xtensa/core-fsf/xtensa-modules.c:8695:
+^I^I^I return 17; /* rfwu */$
ERROR: code indent should never use tabs
#8740: FILE: target/xtensa/core-fsf/xtensa-modules.c:8696:
+^I^I^I}$
ERROR: code indent should never use tabs
#8741: FILE: target/xtensa/core-fsf/xtensa-modules.c:8697:
+^I^I break;$
ERROR: code indent should never use tabs
#8742: FILE: target/xtensa/core-fsf/xtensa-modules.c:8698:
+^I^I case 1:$
ERROR: code indent should never use tabs
#8743: FILE: target/xtensa/core-fsf/xtensa-modules.c:8699:
+^I^I return 188; /* rfi */$
ERROR: code indent should never use tabs
#8744: FILE: target/xtensa/core-fsf/xtensa-modules.c:8700:
+^I^I }$
ERROR: code indent should never use tabs
#8745: FILE: target/xtensa/core-fsf/xtensa-modules.c:8701:
+^I^I break;$
ERROR: code indent should never use tabs
#8746: FILE: target/xtensa/core-fsf/xtensa-modules.c:8702:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#8747: FILE: target/xtensa/core-fsf/xtensa-modules.c:8703:
+^I^I return 196; /* break */$
ERROR: code indent should never use tabs
#8748: FILE: target/xtensa/core-fsf/xtensa-modules.c:8704:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#8749: FILE: target/xtensa/core-fsf/xtensa-modules.c:8705:
+^I^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8749: FILE: target/xtensa/core-fsf/xtensa-modules.c:8705:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8750: FILE: target/xtensa/core-fsf/xtensa-modules.c:8706:
+^I^I {$
ERROR: code indent should never use tabs
#8751: FILE: target/xtensa/core-fsf/xtensa-modules.c:8707:
+^I^I case 0:$
ERROR: code indent should never use tabs
#8752: FILE: target/xtensa/core-fsf/xtensa-modules.c:8708:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8752: FILE: target/xtensa/core-fsf/xtensa-modules.c:8708:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8753: FILE: target/xtensa/core-fsf/xtensa-modules.c:8709:
+^I^I^Ireturn 3; /* syscall */$
ERROR: code indent should never use tabs
#8754: FILE: target/xtensa/core-fsf/xtensa-modules.c:8710:
+^I^I break;$
ERROR: code indent should never use tabs
#8755: FILE: target/xtensa/core-fsf/xtensa-modules.c:8711:
+^I^I case 1:$
ERROR: code indent should never use tabs
#8756: FILE: target/xtensa/core-fsf/xtensa-modules.c:8712:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8756: FILE: target/xtensa/core-fsf/xtensa-modules.c:8712:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8757: FILE: target/xtensa/core-fsf/xtensa-modules.c:8713:
+^I^I^Ireturn 4; /* simcall */$
ERROR: code indent should never use tabs
#8758: FILE: target/xtensa/core-fsf/xtensa-modules.c:8714:
+^I^I break;$
ERROR: code indent should never use tabs
#8759: FILE: target/xtensa/core-fsf/xtensa-modules.c:8715:
+^I^I }$
ERROR: code indent should never use tabs
#8760: FILE: target/xtensa/core-fsf/xtensa-modules.c:8716:
+^I^I break;$
ERROR: code indent should never use tabs
#8761: FILE: target/xtensa/core-fsf/xtensa-modules.c:8717:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#8762: FILE: target/xtensa/core-fsf/xtensa-modules.c:8718:
+^I^I return 118; /* rsil */$
ERROR: code indent should never use tabs
#8763: FILE: target/xtensa/core-fsf/xtensa-modules.c:8719:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#8764: FILE: target/xtensa/core-fsf/xtensa-modules.c:8720:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8764: FILE: target/xtensa/core-fsf/xtensa-modules.c:8720:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8765: FILE: target/xtensa/core-fsf/xtensa-modules.c:8721:
+^I^I return 189; /* waiti */$
ERROR: code indent should never use tabs
#8766: FILE: target/xtensa/core-fsf/xtensa-modules.c:8722:
+^I^I break;$
ERROR: code indent should never use tabs
#8767: FILE: target/xtensa/core-fsf/xtensa-modules.c:8723:
+^I^I}$
ERROR: code indent should never use tabs
#8768: FILE: target/xtensa/core-fsf/xtensa-modules.c:8724:
+^I break;$
ERROR: code indent should never use tabs
#8769: FILE: target/xtensa/core-fsf/xtensa-modules.c:8725:
+^I case 1:$
ERROR: code indent should never use tabs
#8770: FILE: target/xtensa/core-fsf/xtensa-modules.c:8726:
+^I return 47; /* and */$
ERROR: code indent should never use tabs
#8771: FILE: target/xtensa/core-fsf/xtensa-modules.c:8727:
+^I case 2:$
ERROR: code indent should never use tabs
#8772: FILE: target/xtensa/core-fsf/xtensa-modules.c:8728:
+^I return 48; /* or */$
ERROR: code indent should never use tabs
#8773: FILE: target/xtensa/core-fsf/xtensa-modules.c:8729:
+^I case 3:$
ERROR: code indent should never use tabs
#8774: FILE: target/xtensa/core-fsf/xtensa-modules.c:8730:
+^I return 49; /* xor */$
ERROR: code indent should never use tabs
#8775: FILE: target/xtensa/core-fsf/xtensa-modules.c:8731:
+^I case 4:$
ERROR: code indent should never use tabs
#8776: FILE: target/xtensa/core-fsf/xtensa-modules.c:8732:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8776: FILE: target/xtensa/core-fsf/xtensa-modules.c:8732:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8777: FILE: target/xtensa/core-fsf/xtensa-modules.c:8733:
+^I^I{$
ERROR: code indent should never use tabs
#8778: FILE: target/xtensa/core-fsf/xtensa-modules.c:8734:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#8779: FILE: target/xtensa/core-fsf/xtensa-modules.c:8735:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8779: FILE: target/xtensa/core-fsf/xtensa-modules.c:8735:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8780: FILE: target/xtensa/core-fsf/xtensa-modules.c:8736:
+^I^I return 100; /* ssr */$
ERROR: code indent should never use tabs
#8781: FILE: target/xtensa/core-fsf/xtensa-modules.c:8737:
+^I^I break;$
ERROR: code indent should never use tabs
#8782: FILE: target/xtensa/core-fsf/xtensa-modules.c:8738:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#8783: FILE: target/xtensa/core-fsf/xtensa-modules.c:8739:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8783: FILE: target/xtensa/core-fsf/xtensa-modules.c:8739:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8784: FILE: target/xtensa/core-fsf/xtensa-modules.c:8740:
+^I^I return 101; /* ssl */$
ERROR: code indent should never use tabs
#8785: FILE: target/xtensa/core-fsf/xtensa-modules.c:8741:
+^I^I break;$
ERROR: code indent should never use tabs
#8786: FILE: target/xtensa/core-fsf/xtensa-modules.c:8742:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#8787: FILE: target/xtensa/core-fsf/xtensa-modules.c:8743:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8787: FILE: target/xtensa/core-fsf/xtensa-modules.c:8743:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8788: FILE: target/xtensa/core-fsf/xtensa-modules.c:8744:
+^I^I return 102; /* ssa8l */$
ERROR: code indent should never use tabs
#8789: FILE: target/xtensa/core-fsf/xtensa-modules.c:8745:
+^I^I break;$
ERROR: code indent should never use tabs
#8790: FILE: target/xtensa/core-fsf/xtensa-modules.c:8746:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#8791: FILE: target/xtensa/core-fsf/xtensa-modules.c:8747:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8791: FILE: target/xtensa/core-fsf/xtensa-modules.c:8747:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8792: FILE: target/xtensa/core-fsf/xtensa-modules.c:8748:
+^I^I return 103; /* ssa8b */$
ERROR: code indent should never use tabs
#8793: FILE: target/xtensa/core-fsf/xtensa-modules.c:8749:
+^I^I break;$
ERROR: code indent should never use tabs
#8794: FILE: target/xtensa/core-fsf/xtensa-modules.c:8750:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#8795: FILE: target/xtensa/core-fsf/xtensa-modules.c:8751:
+^I^I if (Field_thi3_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8795: FILE: target/xtensa/core-fsf/xtensa-modules.c:8751:
+ if (Field_thi3_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8796: FILE: target/xtensa/core-fsf/xtensa-modules.c:8752:
+^I^I return 104; /* ssai */$
ERROR: code indent should never use tabs
#8797: FILE: target/xtensa/core-fsf/xtensa-modules.c:8753:
+^I^I break;$
ERROR: code indent should never use tabs
#8798: FILE: target/xtensa/core-fsf/xtensa-modules.c:8754:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#8799: FILE: target/xtensa/core-fsf/xtensa-modules.c:8755:
+^I^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8799: FILE: target/xtensa/core-fsf/xtensa-modules.c:8755:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8800: FILE: target/xtensa/core-fsf/xtensa-modules.c:8756:
+^I^I return 13; /* rotw */$
ERROR: code indent should never use tabs
#8801: FILE: target/xtensa/core-fsf/xtensa-modules.c:8757:
+^I^I break;$
ERROR: code indent should never use tabs
#8802: FILE: target/xtensa/core-fsf/xtensa-modules.c:8758:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#8803: FILE: target/xtensa/core-fsf/xtensa-modules.c:8759:
+^I^I return 289; /* nsa */$
ERROR: code indent should never use tabs
#8804: FILE: target/xtensa/core-fsf/xtensa-modules.c:8760:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#8805: FILE: target/xtensa/core-fsf/xtensa-modules.c:8761:
+^I^I return 290; /* nsau */$
ERROR: code indent should never use tabs
#8806: FILE: target/xtensa/core-fsf/xtensa-modules.c:8762:
+^I^I}$
ERROR: code indent should never use tabs
#8807: FILE: target/xtensa/core-fsf/xtensa-modules.c:8763:
+^I break;$
ERROR: code indent should never use tabs
#8808: FILE: target/xtensa/core-fsf/xtensa-modules.c:8764:
+^I case 5:$
ERROR: code indent should never use tabs
#8809: FILE: target/xtensa/core-fsf/xtensa-modules.c:8765:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8809: FILE: target/xtensa/core-fsf/xtensa-modules.c:8765:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8810: FILE: target/xtensa/core-fsf/xtensa-modules.c:8766:
+^I^I{$
ERROR: code indent should never use tabs
#8811: FILE: target/xtensa/core-fsf/xtensa-modules.c:8767:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#8812: FILE: target/xtensa/core-fsf/xtensa-modules.c:8768:
+^I^I return 287; /* hwwitlba */$
ERROR: code indent should never use tabs
#8813: FILE: target/xtensa/core-fsf/xtensa-modules.c:8769:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#8814: FILE: target/xtensa/core-fsf/xtensa-modules.c:8770:
+^I^I return 283; /* ritlb0 */$
ERROR: code indent should never use tabs
#8815: FILE: target/xtensa/core-fsf/xtensa-modules.c:8771:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#8816: FILE: target/xtensa/core-fsf/xtensa-modules.c:8772:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8816: FILE: target/xtensa/core-fsf/xtensa-modules.c:8772:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8817: FILE: target/xtensa/core-fsf/xtensa-modules.c:8773:
+^I^I return 281; /* iitlb */$
ERROR: code indent should never use tabs
#8818: FILE: target/xtensa/core-fsf/xtensa-modules.c:8774:
+^I^I break;$
ERROR: code indent should never use tabs
#8819: FILE: target/xtensa/core-fsf/xtensa-modules.c:8775:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#8820: FILE: target/xtensa/core-fsf/xtensa-modules.c:8776:
+^I^I return 282; /* pitlb */$
ERROR: code indent should never use tabs
#8821: FILE: target/xtensa/core-fsf/xtensa-modules.c:8777:
+^I^Icase 6:$
ERROR: code indent should never use tabs
#8822: FILE: target/xtensa/core-fsf/xtensa-modules.c:8778:
+^I^I return 285; /* witlb */$
ERROR: code indent should never use tabs
#8823: FILE: target/xtensa/core-fsf/xtensa-modules.c:8779:
+^I^Icase 7:$
ERROR: code indent should never use tabs
#8824: FILE: target/xtensa/core-fsf/xtensa-modules.c:8780:
+^I^I return 284; /* ritlb1 */$
ERROR: code indent should never use tabs
#8825: FILE: target/xtensa/core-fsf/xtensa-modules.c:8781:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#8826: FILE: target/xtensa/core-fsf/xtensa-modules.c:8782:
+^I^I return 288; /* hwwdtlba */$
ERROR: code indent should never use tabs
#8827: FILE: target/xtensa/core-fsf/xtensa-modules.c:8783:
+^I^Icase 11:$
ERROR: code indent should never use tabs
#8828: FILE: target/xtensa/core-fsf/xtensa-modules.c:8784:
+^I^I return 278; /* rdtlb0 */$
ERROR: code indent should never use tabs
#8829: FILE: target/xtensa/core-fsf/xtensa-modules.c:8785:
+^I^Icase 12:$
ERROR: code indent should never use tabs
#8830: FILE: target/xtensa/core-fsf/xtensa-modules.c:8786:
+^I^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8830: FILE: target/xtensa/core-fsf/xtensa-modules.c:8786:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8831: FILE: target/xtensa/core-fsf/xtensa-modules.c:8787:
+^I^I return 276; /* idtlb */$
ERROR: code indent should never use tabs
#8832: FILE: target/xtensa/core-fsf/xtensa-modules.c:8788:
+^I^I break;$
ERROR: code indent should never use tabs
#8833: FILE: target/xtensa/core-fsf/xtensa-modules.c:8789:
+^I^Icase 13:$
ERROR: code indent should never use tabs
#8834: FILE: target/xtensa/core-fsf/xtensa-modules.c:8790:
+^I^I return 277; /* pdtlb */$
ERROR: code indent should never use tabs
#8835: FILE: target/xtensa/core-fsf/xtensa-modules.c:8791:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#8836: FILE: target/xtensa/core-fsf/xtensa-modules.c:8792:
+^I^I return 280; /* wdtlb */$
ERROR: code indent should never use tabs
#8837: FILE: target/xtensa/core-fsf/xtensa-modules.c:8793:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#8838: FILE: target/xtensa/core-fsf/xtensa-modules.c:8794:
+^I^I return 279; /* rdtlb1 */$
ERROR: code indent should never use tabs
#8839: FILE: target/xtensa/core-fsf/xtensa-modules.c:8795:
+^I^I}$
ERROR: code indent should never use tabs
#8840: FILE: target/xtensa/core-fsf/xtensa-modules.c:8796:
+^I break;$
ERROR: code indent should never use tabs
#8841: FILE: target/xtensa/core-fsf/xtensa-modules.c:8797:
+^I case 6:$
ERROR: code indent should never use tabs
#8842: FILE: target/xtensa/core-fsf/xtensa-modules.c:8798:
+^I switch (Field_s_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8842: FILE: target/xtensa/core-fsf/xtensa-modules.c:8798:
+ switch (Field_s_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8843: FILE: target/xtensa/core-fsf/xtensa-modules.c:8799:
+^I^I{$
ERROR: code indent should never use tabs
#8844: FILE: target/xtensa/core-fsf/xtensa-modules.c:8800:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#8845: FILE: target/xtensa/core-fsf/xtensa-modules.c:8801:
+^I^I return 93; /* neg */$
ERROR: code indent should never use tabs
#8846: FILE: target/xtensa/core-fsf/xtensa-modules.c:8802:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#8847: FILE: target/xtensa/core-fsf/xtensa-modules.c:8803:
+^I^I return 94; /* abs */$
ERROR: code indent should never use tabs
#8848: FILE: target/xtensa/core-fsf/xtensa-modules.c:8804:
+^I^I}$
ERROR: code indent should never use tabs
#8849: FILE: target/xtensa/core-fsf/xtensa-modules.c:8805:
+^I break;$
ERROR: code indent should never use tabs
#8850: FILE: target/xtensa/core-fsf/xtensa-modules.c:8806:
+^I case 8:$
ERROR: code indent should never use tabs
#8851: FILE: target/xtensa/core-fsf/xtensa-modules.c:8807:
+^I return 39; /* add */$
ERROR: code indent should never use tabs
#8852: FILE: target/xtensa/core-fsf/xtensa-modules.c:8808:
+^I case 9:$
ERROR: code indent should never use tabs
#8853: FILE: target/xtensa/core-fsf/xtensa-modules.c:8809:
+^I return 41; /* addx2 */$
ERROR: code indent should never use tabs
#8854: FILE: target/xtensa/core-fsf/xtensa-modules.c:8810:
+^I case 10:$
ERROR: code indent should never use tabs
#8855: FILE: target/xtensa/core-fsf/xtensa-modules.c:8811:
+^I return 42; /* addx4 */$
ERROR: code indent should never use tabs
#8856: FILE: target/xtensa/core-fsf/xtensa-modules.c:8812:
+^I case 11:$
ERROR: code indent should never use tabs
#8857: FILE: target/xtensa/core-fsf/xtensa-modules.c:8813:
+^I return 43; /* addx8 */$
ERROR: code indent should never use tabs
#8858: FILE: target/xtensa/core-fsf/xtensa-modules.c:8814:
+^I case 12:$
ERROR: code indent should never use tabs
#8859: FILE: target/xtensa/core-fsf/xtensa-modules.c:8815:
+^I return 40; /* sub */$
ERROR: code indent should never use tabs
#8860: FILE: target/xtensa/core-fsf/xtensa-modules.c:8816:
+^I case 13:$
ERROR: code indent should never use tabs
#8861: FILE: target/xtensa/core-fsf/xtensa-modules.c:8817:
+^I return 44; /* subx2 */$
ERROR: code indent should never use tabs
#8862: FILE: target/xtensa/core-fsf/xtensa-modules.c:8818:
+^I case 14:$
ERROR: code indent should never use tabs
#8863: FILE: target/xtensa/core-fsf/xtensa-modules.c:8819:
+^I return 45; /* subx4 */$
ERROR: code indent should never use tabs
#8864: FILE: target/xtensa/core-fsf/xtensa-modules.c:8820:
+^I case 15:$
ERROR: code indent should never use tabs
#8865: FILE: target/xtensa/core-fsf/xtensa-modules.c:8821:
+^I return 46; /* subx8 */$
ERROR: code indent should never use tabs
#8866: FILE: target/xtensa/core-fsf/xtensa-modules.c:8822:
+^I }$
ERROR: code indent should never use tabs
#8867: FILE: target/xtensa/core-fsf/xtensa-modules.c:8823:
+^I break;$
ERROR: code indent should never use tabs
#8868: FILE: target/xtensa/core-fsf/xtensa-modules.c:8824:
+^Icase 1:$
ERROR: code indent should never use tabs
#8869: FILE: target/xtensa/core-fsf/xtensa-modules.c:8825:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8869: FILE: target/xtensa/core-fsf/xtensa-modules.c:8825:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8870: FILE: target/xtensa/core-fsf/xtensa-modules.c:8826:
+^I {$
ERROR: code indent should never use tabs
#8871: FILE: target/xtensa/core-fsf/xtensa-modules.c:8827:
+^I case 0:$
ERROR: code indent should never use tabs
#8872: FILE: target/xtensa/core-fsf/xtensa-modules.c:8828:
+^I case 1:$
ERROR: code indent should never use tabs
#8873: FILE: target/xtensa/core-fsf/xtensa-modules.c:8829:
+^I return 109; /* slli */$
ERROR: code indent should never use tabs
#8874: FILE: target/xtensa/core-fsf/xtensa-modules.c:8830:
+^I case 2:$
ERROR: code indent should never use tabs
#8875: FILE: target/xtensa/core-fsf/xtensa-modules.c:8831:
+^I case 3:$
ERROR: code indent should never use tabs
#8876: FILE: target/xtensa/core-fsf/xtensa-modules.c:8832:
+^I return 110; /* srai */$
ERROR: code indent should never use tabs
#8877: FILE: target/xtensa/core-fsf/xtensa-modules.c:8833:
+^I case 4:$
ERROR: code indent should never use tabs
#8878: FILE: target/xtensa/core-fsf/xtensa-modules.c:8834:
+^I return 111; /* srli */$
ERROR: code indent should never use tabs
#8879: FILE: target/xtensa/core-fsf/xtensa-modules.c:8835:
+^I case 6:$
ERROR: code indent should never use tabs
#8880: FILE: target/xtensa/core-fsf/xtensa-modules.c:8836:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8880: FILE: target/xtensa/core-fsf/xtensa-modules.c:8836:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8881: FILE: target/xtensa/core-fsf/xtensa-modules.c:8837:
+^I^I{$
ERROR: code indent should never use tabs
#8882: FILE: target/xtensa/core-fsf/xtensa-modules.c:8838:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#8883: FILE: target/xtensa/core-fsf/xtensa-modules.c:8839:
+^I^I return 127; /* xsr.lbeg */$
ERROR: code indent should never use tabs
#8884: FILE: target/xtensa/core-fsf/xtensa-modules.c:8840:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#8885: FILE: target/xtensa/core-fsf/xtensa-modules.c:8841:
+^I^I return 121; /* xsr.lend */$
ERROR: code indent should never use tabs
#8886: FILE: target/xtensa/core-fsf/xtensa-modules.c:8842:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#8887: FILE: target/xtensa/core-fsf/xtensa-modules.c:8843:
+^I^I return 124; /* xsr.lcount */$
ERROR: code indent should never use tabs
#8888: FILE: target/xtensa/core-fsf/xtensa-modules.c:8844:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#8889: FILE: target/xtensa/core-fsf/xtensa-modules.c:8845:
+^I^I return 130; /* xsr.sar */$
ERROR: code indent should never use tabs
#8890: FILE: target/xtensa/core-fsf/xtensa-modules.c:8846:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#8891: FILE: target/xtensa/core-fsf/xtensa-modules.c:8847:
+^I^I return 133; /* xsr.litbase */$
ERROR: code indent should never use tabs
#8892: FILE: target/xtensa/core-fsf/xtensa-modules.c:8848:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#8893: FILE: target/xtensa/core-fsf/xtensa-modules.c:8849:
+^I^I return 22; /* xsr.windowbase */$
ERROR: code indent should never use tabs
#8894: FILE: target/xtensa/core-fsf/xtensa-modules.c:8850:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#8895: FILE: target/xtensa/core-fsf/xtensa-modules.c:8851:
+^I^I return 25; /* xsr.windowstart */$
ERROR: code indent should never use tabs
#8896: FILE: target/xtensa/core-fsf/xtensa-modules.c:8852:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#8897: FILE: target/xtensa/core-fsf/xtensa-modules.c:8853:
+^I^I return 266; /* xsr.ptevaddr */$
ERROR: code indent should never use tabs
#8898: FILE: target/xtensa/core-fsf/xtensa-modules.c:8854:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#8899: FILE: target/xtensa/core-fsf/xtensa-modules.c:8855:
+^I^I return 269; /* xsr.rasid */$
ERROR: code indent should never use tabs
#8900: FILE: target/xtensa/core-fsf/xtensa-modules.c:8856:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#8901: FILE: target/xtensa/core-fsf/xtensa-modules.c:8857:
+^I^I return 272; /* xsr.itlbcfg */$
ERROR: code indent should never use tabs
#8902: FILE: target/xtensa/core-fsf/xtensa-modules.c:8858:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#8903: FILE: target/xtensa/core-fsf/xtensa-modules.c:8859:
+^I^I return 275; /* xsr.dtlbcfg */$
ERROR: code indent should never use tabs
#8904: FILE: target/xtensa/core-fsf/xtensa-modules.c:8860:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#8905: FILE: target/xtensa/core-fsf/xtensa-modules.c:8861:
+^I^I return 218; /* xsr.ibreakenable */$
ERROR: code indent should never use tabs
#8906: FILE: target/xtensa/core-fsf/xtensa-modules.c:8862:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#8907: FILE: target/xtensa/core-fsf/xtensa-modules.c:8863:
+^I^I return 230; /* xsr.ddr */$
ERROR: code indent should never use tabs
#8908: FILE: target/xtensa/core-fsf/xtensa-modules.c:8864:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#8909: FILE: target/xtensa/core-fsf/xtensa-modules.c:8865:
+^I^I return 212; /* xsr.ibreaka0 */$
ERROR: code indent should never use tabs
#8910: FILE: target/xtensa/core-fsf/xtensa-modules.c:8866:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#8911: FILE: target/xtensa/core-fsf/xtensa-modules.c:8867:
+^I^I return 215; /* xsr.ibreaka1 */$
ERROR: code indent should never use tabs
#8912: FILE: target/xtensa/core-fsf/xtensa-modules.c:8868:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#8913: FILE: target/xtensa/core-fsf/xtensa-modules.c:8869:
+^I^I return 200; /* xsr.dbreaka0 */$
ERROR: code indent should never use tabs
#8914: FILE: target/xtensa/core-fsf/xtensa-modules.c:8870:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#8915: FILE: target/xtensa/core-fsf/xtensa-modules.c:8871:
+^I^I return 206; /* xsr.dbreaka1 */$
ERROR: code indent should never use tabs
#8916: FILE: target/xtensa/core-fsf/xtensa-modules.c:8872:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#8917: FILE: target/xtensa/core-fsf/xtensa-modules.c:8873:
+^I^I return 203; /* xsr.dbreakc0 */$
ERROR: code indent should never use tabs
#8918: FILE: target/xtensa/core-fsf/xtensa-modules.c:8874:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#8919: FILE: target/xtensa/core-fsf/xtensa-modules.c:8875:
+^I^I return 209; /* xsr.dbreakc1 */$
ERROR: code indent should never use tabs
#8920: FILE: target/xtensa/core-fsf/xtensa-modules.c:8876:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#8921: FILE: target/xtensa/core-fsf/xtensa-modules.c:8877:
+^I^I return 141; /* xsr.epc1 */$
ERROR: code indent should never use tabs
#8922: FILE: target/xtensa/core-fsf/xtensa-modules.c:8878:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#8923: FILE: target/xtensa/core-fsf/xtensa-modules.c:8879:
+^I^I return 147; /* xsr.epc2 */$
ERROR: code indent should never use tabs
#8924: FILE: target/xtensa/core-fsf/xtensa-modules.c:8880:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#8925: FILE: target/xtensa/core-fsf/xtensa-modules.c:8881:
+^I^I return 153; /* xsr.epc3 */$
ERROR: code indent should never use tabs
#8926: FILE: target/xtensa/core-fsf/xtensa-modules.c:8882:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#8927: FILE: target/xtensa/core-fsf/xtensa-modules.c:8883:
+^I^I return 159; /* xsr.epc4 */$
ERROR: code indent should never use tabs
#8928: FILE: target/xtensa/core-fsf/xtensa-modules.c:8884:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#8929: FILE: target/xtensa/core-fsf/xtensa-modules.c:8885:
+^I^I return 177; /* xsr.depc */$
ERROR: code indent should never use tabs
#8930: FILE: target/xtensa/core-fsf/xtensa-modules.c:8886:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#8931: FILE: target/xtensa/core-fsf/xtensa-modules.c:8887:
+^I^I return 165; /* xsr.eps2 */$
ERROR: code indent should never use tabs
#8932: FILE: target/xtensa/core-fsf/xtensa-modules.c:8888:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#8933: FILE: target/xtensa/core-fsf/xtensa-modules.c:8889:
+^I^I return 168; /* xsr.eps3 */$
ERROR: code indent should never use tabs
#8934: FILE: target/xtensa/core-fsf/xtensa-modules.c:8890:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#8935: FILE: target/xtensa/core-fsf/xtensa-modules.c:8891:
+^I^I return 171; /* xsr.eps4 */$
ERROR: code indent should never use tabs
#8936: FILE: target/xtensa/core-fsf/xtensa-modules.c:8892:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#8937: FILE: target/xtensa/core-fsf/xtensa-modules.c:8893:
+^I^I return 144; /* xsr.excsave1 */$
ERROR: code indent should never use tabs
#8938: FILE: target/xtensa/core-fsf/xtensa-modules.c:8894:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#8939: FILE: target/xtensa/core-fsf/xtensa-modules.c:8895:
+^I^I return 150; /* xsr.excsave2 */$
ERROR: code indent should never use tabs
#8940: FILE: target/xtensa/core-fsf/xtensa-modules.c:8896:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#8941: FILE: target/xtensa/core-fsf/xtensa-modules.c:8897:
+^I^I return 156; /* xsr.excsave3 */$
ERROR: code indent should never use tabs
#8942: FILE: target/xtensa/core-fsf/xtensa-modules.c:8898:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#8943: FILE: target/xtensa/core-fsf/xtensa-modules.c:8899:
+^I^I return 162; /* xsr.excsave4 */$
ERROR: code indent should never use tabs
#8944: FILE: target/xtensa/core-fsf/xtensa-modules.c:8900:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#8945: FILE: target/xtensa/core-fsf/xtensa-modules.c:8901:
+^I^I return 195; /* xsr.intenable */$
ERROR: code indent should never use tabs
#8946: FILE: target/xtensa/core-fsf/xtensa-modules.c:8902:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#8947: FILE: target/xtensa/core-fsf/xtensa-modules.c:8903:
+^I^I return 138; /* xsr.ps */$
ERROR: code indent should never use tabs
#8948: FILE: target/xtensa/core-fsf/xtensa-modules.c:8904:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#8949: FILE: target/xtensa/core-fsf/xtensa-modules.c:8905:
+^I^I return 180; /* xsr.exccause */$
ERROR: code indent should never use tabs
#8950: FILE: target/xtensa/core-fsf/xtensa-modules.c:8906:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#8951: FILE: target/xtensa/core-fsf/xtensa-modules.c:8907:
+^I^I return 221; /* xsr.debugcause */$
ERROR: code indent should never use tabs
#8952: FILE: target/xtensa/core-fsf/xtensa-modules.c:8908:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#8953: FILE: target/xtensa/core-fsf/xtensa-modules.c:8909:
+^I^I return 235; /* xsr.ccount */$
ERROR: code indent should never use tabs
#8954: FILE: target/xtensa/core-fsf/xtensa-modules.c:8910:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#8955: FILE: target/xtensa/core-fsf/xtensa-modules.c:8911:
+^I^I return 224; /* xsr.icount */$
ERROR: code indent should never use tabs
#8956: FILE: target/xtensa/core-fsf/xtensa-modules.c:8912:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#8957: FILE: target/xtensa/core-fsf/xtensa-modules.c:8913:
+^I^I return 227; /* xsr.icountlevel */$
ERROR: code indent should never use tabs
#8958: FILE: target/xtensa/core-fsf/xtensa-modules.c:8914:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#8959: FILE: target/xtensa/core-fsf/xtensa-modules.c:8915:
+^I^I return 174; /* xsr.excvaddr */$
ERROR: code indent should never use tabs
#8960: FILE: target/xtensa/core-fsf/xtensa-modules.c:8916:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#8961: FILE: target/xtensa/core-fsf/xtensa-modules.c:8917:
+^I^I return 238; /* xsr.ccompare0 */$
ERROR: code indent should never use tabs
#8962: FILE: target/xtensa/core-fsf/xtensa-modules.c:8918:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#8963: FILE: target/xtensa/core-fsf/xtensa-modules.c:8919:
+^I^I return 241; /* xsr.ccompare1 */$
ERROR: code indent should never use tabs
#8964: FILE: target/xtensa/core-fsf/xtensa-modules.c:8920:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#8965: FILE: target/xtensa/core-fsf/xtensa-modules.c:8921:
+^I^I return 244; /* xsr.ccompare2 */$
ERROR: code indent should never use tabs
#8966: FILE: target/xtensa/core-fsf/xtensa-modules.c:8922:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#8967: FILE: target/xtensa/core-fsf/xtensa-modules.c:8923:
+^I^I return 183; /* xsr.misc0 */$
ERROR: code indent should never use tabs
#8968: FILE: target/xtensa/core-fsf/xtensa-modules.c:8924:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#8969: FILE: target/xtensa/core-fsf/xtensa-modules.c:8925:
+^I^I return 186; /* xsr.misc1 */$
ERROR: code indent should never use tabs
#8970: FILE: target/xtensa/core-fsf/xtensa-modules.c:8926:
+^I^I}$
ERROR: code indent should never use tabs
#8971: FILE: target/xtensa/core-fsf/xtensa-modules.c:8927:
+^I break;$
ERROR: code indent should never use tabs
#8972: FILE: target/xtensa/core-fsf/xtensa-modules.c:8928:
+^I case 8:$
ERROR: code indent should never use tabs
#8973: FILE: target/xtensa/core-fsf/xtensa-modules.c:8929:
+^I return 106; /* src */$
ERROR: code indent should never use tabs
#8974: FILE: target/xtensa/core-fsf/xtensa-modules.c:8930:
+^I case 9:$
ERROR: code indent should never use tabs
#8975: FILE: target/xtensa/core-fsf/xtensa-modules.c:8931:
+^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8975: FILE: target/xtensa/core-fsf/xtensa-modules.c:8931:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8976: FILE: target/xtensa/core-fsf/xtensa-modules.c:8932:
+^I^Ireturn 107; /* srl */$
ERROR: code indent should never use tabs
#8977: FILE: target/xtensa/core-fsf/xtensa-modules.c:8933:
+^I break;$
ERROR: code indent should never use tabs
#8978: FILE: target/xtensa/core-fsf/xtensa-modules.c:8934:
+^I case 10:$
ERROR: code indent should never use tabs
#8979: FILE: target/xtensa/core-fsf/xtensa-modules.c:8935:
+^I if (Field_t_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8979: FILE: target/xtensa/core-fsf/xtensa-modules.c:8935:
+ if (Field_t_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8980: FILE: target/xtensa/core-fsf/xtensa-modules.c:8936:
+^I^Ireturn 105; /* sll */$
ERROR: code indent should never use tabs
#8981: FILE: target/xtensa/core-fsf/xtensa-modules.c:8937:
+^I break;$
ERROR: code indent should never use tabs
#8982: FILE: target/xtensa/core-fsf/xtensa-modules.c:8938:
+^I case 11:$
ERROR: code indent should never use tabs
#8983: FILE: target/xtensa/core-fsf/xtensa-modules.c:8939:
+^I if (Field_s_Slot_inst_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#8983: FILE: target/xtensa/core-fsf/xtensa-modules.c:8939:
+ if (Field_s_Slot_inst_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#8984: FILE: target/xtensa/core-fsf/xtensa-modules.c:8940:
+^I^Ireturn 108; /* sra */$
ERROR: code indent should never use tabs
#8985: FILE: target/xtensa/core-fsf/xtensa-modules.c:8941:
+^I break;$
ERROR: code indent should never use tabs
#8986: FILE: target/xtensa/core-fsf/xtensa-modules.c:8942:
+^I case 15:$
ERROR: code indent should never use tabs
#8987: FILE: target/xtensa/core-fsf/xtensa-modules.c:8943:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#8987: FILE: target/xtensa/core-fsf/xtensa-modules.c:8943:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#8988: FILE: target/xtensa/core-fsf/xtensa-modules.c:8944:
+^I^I{$
ERROR: code indent should never use tabs
#8989: FILE: target/xtensa/core-fsf/xtensa-modules.c:8945:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#8990: FILE: target/xtensa/core-fsf/xtensa-modules.c:8946:
+^I^I return 248; /* lict */$
ERROR: code indent should never use tabs
#8991: FILE: target/xtensa/core-fsf/xtensa-modules.c:8947:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#8992: FILE: target/xtensa/core-fsf/xtensa-modules.c:8948:
+^I^I return 250; /* sict */$
ERROR: code indent should never use tabs
#8993: FILE: target/xtensa/core-fsf/xtensa-modules.c:8949:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#8994: FILE: target/xtensa/core-fsf/xtensa-modules.c:8950:
+^I^I return 249; /* licw */$
ERROR: code indent should never use tabs
#8995: FILE: target/xtensa/core-fsf/xtensa-modules.c:8951:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#8996: FILE: target/xtensa/core-fsf/xtensa-modules.c:8952:
+^I^I return 251; /* sicw */$
ERROR: code indent should never use tabs
#8997: FILE: target/xtensa/core-fsf/xtensa-modules.c:8953:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#8998: FILE: target/xtensa/core-fsf/xtensa-modules.c:8954:
+^I^I return 263; /* ldct */$
ERROR: code indent should never use tabs
#8999: FILE: target/xtensa/core-fsf/xtensa-modules.c:8955:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#9000: FILE: target/xtensa/core-fsf/xtensa-modules.c:8956:
+^I^I return 262; /* sdct */$
ERROR: code indent should never use tabs
#9001: FILE: target/xtensa/core-fsf/xtensa-modules.c:8957:
+^I^Icase 14:$
ERROR: code indent should never use tabs
#9002: FILE: target/xtensa/core-fsf/xtensa-modules.c:8958:
+^I^I if (Field_t_Slot_inst_get (insn) == 0 &&$
ERROR: braces {} are necessary for all arms of this statement
#9002: FILE: target/xtensa/core-fsf/xtensa-modules.c:8958:
+ if (Field_t_Slot_inst_get (insn) == 0 &&
[...]
ERROR: code indent should never use tabs
#9003: FILE: target/xtensa/core-fsf/xtensa-modules.c:8959:
+^I^I Field_s_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#9004: FILE: target/xtensa/core-fsf/xtensa-modules.c:8960:
+^I^I return 231; /* rfdo */$
ERROR: code indent should never use tabs
#9005: FILE: target/xtensa/core-fsf/xtensa-modules.c:8961:
+^I^I if (Field_t_Slot_inst_get (insn) == 1 &&$
ERROR: braces {} are necessary for all arms of this statement
#9005: FILE: target/xtensa/core-fsf/xtensa-modules.c:8961:
+ if (Field_t_Slot_inst_get (insn) == 1 &&
[...]
ERROR: code indent should never use tabs
#9006: FILE: target/xtensa/core-fsf/xtensa-modules.c:8962:
+^I^I Field_s_Slot_inst_get (insn) == 0)$
ERROR: code indent should never use tabs
#9007: FILE: target/xtensa/core-fsf/xtensa-modules.c:8963:
+^I^I return 232; /* rfdd */$
ERROR: code indent should never use tabs
#9008: FILE: target/xtensa/core-fsf/xtensa-modules.c:8964:
+^I^I break;$
ERROR: code indent should never use tabs
#9009: FILE: target/xtensa/core-fsf/xtensa-modules.c:8965:
+^I^Icase 15:$
ERROR: code indent should never use tabs
#9010: FILE: target/xtensa/core-fsf/xtensa-modules.c:8966:
+^I^I return 286; /* ldpte */$
ERROR: code indent should never use tabs
#9011: FILE: target/xtensa/core-fsf/xtensa-modules.c:8967:
+^I^I}$
ERROR: code indent should never use tabs
#9012: FILE: target/xtensa/core-fsf/xtensa-modules.c:8968:
+^I break;$
ERROR: code indent should never use tabs
#9013: FILE: target/xtensa/core-fsf/xtensa-modules.c:8969:
+^I }$
ERROR: code indent should never use tabs
#9014: FILE: target/xtensa/core-fsf/xtensa-modules.c:8970:
+^I break;$
ERROR: code indent should never use tabs
#9015: FILE: target/xtensa/core-fsf/xtensa-modules.c:8971:
+^Icase 3:$
ERROR: code indent should never use tabs
#9016: FILE: target/xtensa/core-fsf/xtensa-modules.c:8972:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9016: FILE: target/xtensa/core-fsf/xtensa-modules.c:8972:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9017: FILE: target/xtensa/core-fsf/xtensa-modules.c:8973:
+^I {$
ERROR: code indent should never use tabs
#9018: FILE: target/xtensa/core-fsf/xtensa-modules.c:8974:
+^I case 0:$
ERROR: code indent should never use tabs
#9019: FILE: target/xtensa/core-fsf/xtensa-modules.c:8975:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9019: FILE: target/xtensa/core-fsf/xtensa-modules.c:8975:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9020: FILE: target/xtensa/core-fsf/xtensa-modules.c:8976:
+^I^I{$
ERROR: code indent should never use tabs
#9021: FILE: target/xtensa/core-fsf/xtensa-modules.c:8977:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#9022: FILE: target/xtensa/core-fsf/xtensa-modules.c:8978:
+^I^I return 125; /* rsr.lbeg */$
ERROR: code indent should never use tabs
#9023: FILE: target/xtensa/core-fsf/xtensa-modules.c:8979:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#9024: FILE: target/xtensa/core-fsf/xtensa-modules.c:8980:
+^I^I return 119; /* rsr.lend */$
ERROR: code indent should never use tabs
#9025: FILE: target/xtensa/core-fsf/xtensa-modules.c:8981:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#9026: FILE: target/xtensa/core-fsf/xtensa-modules.c:8982:
+^I^I return 122; /* rsr.lcount */$
ERROR: code indent should never use tabs
#9027: FILE: target/xtensa/core-fsf/xtensa-modules.c:8983:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#9028: FILE: target/xtensa/core-fsf/xtensa-modules.c:8984:
+^I^I return 128; /* rsr.sar */$
ERROR: code indent should never use tabs
#9029: FILE: target/xtensa/core-fsf/xtensa-modules.c:8985:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#9030: FILE: target/xtensa/core-fsf/xtensa-modules.c:8986:
+^I^I return 131; /* rsr.litbase */$
ERROR: code indent should never use tabs
#9031: FILE: target/xtensa/core-fsf/xtensa-modules.c:8987:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#9032: FILE: target/xtensa/core-fsf/xtensa-modules.c:8988:
+^I^I return 20; /* rsr.windowbase */$
ERROR: code indent should never use tabs
#9033: FILE: target/xtensa/core-fsf/xtensa-modules.c:8989:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#9034: FILE: target/xtensa/core-fsf/xtensa-modules.c:8990:
+^I^I return 23; /* rsr.windowstart */$
ERROR: code indent should never use tabs
#9035: FILE: target/xtensa/core-fsf/xtensa-modules.c:8991:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#9036: FILE: target/xtensa/core-fsf/xtensa-modules.c:8992:
+^I^I return 265; /* rsr.ptevaddr */$
ERROR: code indent should never use tabs
#9037: FILE: target/xtensa/core-fsf/xtensa-modules.c:8993:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#9038: FILE: target/xtensa/core-fsf/xtensa-modules.c:8994:
+^I^I return 267; /* rsr.rasid */$
ERROR: code indent should never use tabs
#9039: FILE: target/xtensa/core-fsf/xtensa-modules.c:8995:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#9040: FILE: target/xtensa/core-fsf/xtensa-modules.c:8996:
+^I^I return 270; /* rsr.itlbcfg */$
ERROR: code indent should never use tabs
#9041: FILE: target/xtensa/core-fsf/xtensa-modules.c:8997:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#9042: FILE: target/xtensa/core-fsf/xtensa-modules.c:8998:
+^I^I return 273; /* rsr.dtlbcfg */$
ERROR: code indent should never use tabs
#9043: FILE: target/xtensa/core-fsf/xtensa-modules.c:8999:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#9044: FILE: target/xtensa/core-fsf/xtensa-modules.c:9000:
+^I^I return 216; /* rsr.ibreakenable */$
ERROR: code indent should never use tabs
#9045: FILE: target/xtensa/core-fsf/xtensa-modules.c:9001:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#9046: FILE: target/xtensa/core-fsf/xtensa-modules.c:9002:
+^I^I return 228; /* rsr.ddr */$
ERROR: code indent should never use tabs
#9047: FILE: target/xtensa/core-fsf/xtensa-modules.c:9003:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#9048: FILE: target/xtensa/core-fsf/xtensa-modules.c:9004:
+^I^I return 210; /* rsr.ibreaka0 */$
ERROR: code indent should never use tabs
#9049: FILE: target/xtensa/core-fsf/xtensa-modules.c:9005:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#9050: FILE: target/xtensa/core-fsf/xtensa-modules.c:9006:
+^I^I return 213; /* rsr.ibreaka1 */$
ERROR: code indent should never use tabs
#9051: FILE: target/xtensa/core-fsf/xtensa-modules.c:9007:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#9052: FILE: target/xtensa/core-fsf/xtensa-modules.c:9008:
+^I^I return 198; /* rsr.dbreaka0 */$
ERROR: code indent should never use tabs
#9053: FILE: target/xtensa/core-fsf/xtensa-modules.c:9009:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#9054: FILE: target/xtensa/core-fsf/xtensa-modules.c:9010:
+^I^I return 204; /* rsr.dbreaka1 */$
ERROR: code indent should never use tabs
#9055: FILE: target/xtensa/core-fsf/xtensa-modules.c:9011:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#9056: FILE: target/xtensa/core-fsf/xtensa-modules.c:9012:
+^I^I return 201; /* rsr.dbreakc0 */$
ERROR: code indent should never use tabs
#9057: FILE: target/xtensa/core-fsf/xtensa-modules.c:9013:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#9058: FILE: target/xtensa/core-fsf/xtensa-modules.c:9014:
+^I^I return 207; /* rsr.dbreakc1 */$
ERROR: code indent should never use tabs
#9059: FILE: target/xtensa/core-fsf/xtensa-modules.c:9015:
+^I^Icase 176:$
ERROR: code indent should never use tabs
#9060: FILE: target/xtensa/core-fsf/xtensa-modules.c:9016:
+^I^I return 134; /* rsr.176 */$
ERROR: code indent should never use tabs
#9061: FILE: target/xtensa/core-fsf/xtensa-modules.c:9017:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#9062: FILE: target/xtensa/core-fsf/xtensa-modules.c:9018:
+^I^I return 139; /* rsr.epc1 */$
ERROR: code indent should never use tabs
#9063: FILE: target/xtensa/core-fsf/xtensa-modules.c:9019:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#9064: FILE: target/xtensa/core-fsf/xtensa-modules.c:9020:
+^I^I return 145; /* rsr.epc2 */$
ERROR: code indent should never use tabs
#9065: FILE: target/xtensa/core-fsf/xtensa-modules.c:9021:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#9066: FILE: target/xtensa/core-fsf/xtensa-modules.c:9022:
+^I^I return 151; /* rsr.epc3 */$
ERROR: code indent should never use tabs
#9067: FILE: target/xtensa/core-fsf/xtensa-modules.c:9023:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#9068: FILE: target/xtensa/core-fsf/xtensa-modules.c:9024:
+^I^I return 157; /* rsr.epc4 */$
ERROR: code indent should never use tabs
#9069: FILE: target/xtensa/core-fsf/xtensa-modules.c:9025:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#9070: FILE: target/xtensa/core-fsf/xtensa-modules.c:9026:
+^I^I return 175; /* rsr.depc */$
ERROR: code indent should never use tabs
#9071: FILE: target/xtensa/core-fsf/xtensa-modules.c:9027:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#9072: FILE: target/xtensa/core-fsf/xtensa-modules.c:9028:
+^I^I return 163; /* rsr.eps2 */$
ERROR: code indent should never use tabs
#9073: FILE: target/xtensa/core-fsf/xtensa-modules.c:9029:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#9074: FILE: target/xtensa/core-fsf/xtensa-modules.c:9030:
+^I^I return 166; /* rsr.eps3 */$
ERROR: code indent should never use tabs
#9075: FILE: target/xtensa/core-fsf/xtensa-modules.c:9031:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#9076: FILE: target/xtensa/core-fsf/xtensa-modules.c:9032:
+^I^I return 169; /* rsr.eps4 */$
ERROR: code indent should never use tabs
#9077: FILE: target/xtensa/core-fsf/xtensa-modules.c:9033:
+^I^Icase 208:$
ERROR: code indent should never use tabs
#9078: FILE: target/xtensa/core-fsf/xtensa-modules.c:9034:
+^I^I return 135; /* rsr.208 */$
ERROR: code indent should never use tabs
#9079: FILE: target/xtensa/core-fsf/xtensa-modules.c:9035:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#9080: FILE: target/xtensa/core-fsf/xtensa-modules.c:9036:
+^I^I return 142; /* rsr.excsave1 */$
ERROR: code indent should never use tabs
#9081: FILE: target/xtensa/core-fsf/xtensa-modules.c:9037:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#9082: FILE: target/xtensa/core-fsf/xtensa-modules.c:9038:
+^I^I return 148; /* rsr.excsave2 */$
ERROR: code indent should never use tabs
#9083: FILE: target/xtensa/core-fsf/xtensa-modules.c:9039:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#9084: FILE: target/xtensa/core-fsf/xtensa-modules.c:9040:
+^I^I return 154; /* rsr.excsave3 */$
ERROR: code indent should never use tabs
#9085: FILE: target/xtensa/core-fsf/xtensa-modules.c:9041:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#9086: FILE: target/xtensa/core-fsf/xtensa-modules.c:9042:
+^I^I return 160; /* rsr.excsave4 */$
ERROR: code indent should never use tabs
#9087: FILE: target/xtensa/core-fsf/xtensa-modules.c:9043:
+^I^Icase 226:$
ERROR: code indent should never use tabs
#9088: FILE: target/xtensa/core-fsf/xtensa-modules.c:9044:
+^I^I return 190; /* rsr.interrupt */$
ERROR: code indent should never use tabs
#9089: FILE: target/xtensa/core-fsf/xtensa-modules.c:9045:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#9090: FILE: target/xtensa/core-fsf/xtensa-modules.c:9046:
+^I^I return 193; /* rsr.intenable */$
ERROR: code indent should never use tabs
#9091: FILE: target/xtensa/core-fsf/xtensa-modules.c:9047:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#9092: FILE: target/xtensa/core-fsf/xtensa-modules.c:9048:
+^I^I return 136; /* rsr.ps */$
ERROR: code indent should never use tabs
#9093: FILE: target/xtensa/core-fsf/xtensa-modules.c:9049:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#9094: FILE: target/xtensa/core-fsf/xtensa-modules.c:9050:
+^I^I return 178; /* rsr.exccause */$
ERROR: code indent should never use tabs
#9095: FILE: target/xtensa/core-fsf/xtensa-modules.c:9051:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#9096: FILE: target/xtensa/core-fsf/xtensa-modules.c:9052:
+^I^I return 219; /* rsr.debugcause */$
ERROR: code indent should never use tabs
#9097: FILE: target/xtensa/core-fsf/xtensa-modules.c:9053:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#9098: FILE: target/xtensa/core-fsf/xtensa-modules.c:9054:
+^I^I return 233; /* rsr.ccount */$
ERROR: code indent should never use tabs
#9099: FILE: target/xtensa/core-fsf/xtensa-modules.c:9055:
+^I^Icase 235:$
ERROR: code indent should never use tabs
#9100: FILE: target/xtensa/core-fsf/xtensa-modules.c:9056:
+^I^I return 187; /* rsr.prid */$
ERROR: code indent should never use tabs
#9101: FILE: target/xtensa/core-fsf/xtensa-modules.c:9057:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#9102: FILE: target/xtensa/core-fsf/xtensa-modules.c:9058:
+^I^I return 222; /* rsr.icount */$
ERROR: code indent should never use tabs
#9103: FILE: target/xtensa/core-fsf/xtensa-modules.c:9059:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#9104: FILE: target/xtensa/core-fsf/xtensa-modules.c:9060:
+^I^I return 225; /* rsr.icountlevel */$
ERROR: code indent should never use tabs
#9105: FILE: target/xtensa/core-fsf/xtensa-modules.c:9061:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#9106: FILE: target/xtensa/core-fsf/xtensa-modules.c:9062:
+^I^I return 172; /* rsr.excvaddr */$
ERROR: code indent should never use tabs
#9107: FILE: target/xtensa/core-fsf/xtensa-modules.c:9063:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#9108: FILE: target/xtensa/core-fsf/xtensa-modules.c:9064:
+^I^I return 236; /* rsr.ccompare0 */$
ERROR: code indent should never use tabs
#9109: FILE: target/xtensa/core-fsf/xtensa-modules.c:9065:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#9110: FILE: target/xtensa/core-fsf/xtensa-modules.c:9066:
+^I^I return 239; /* rsr.ccompare1 */$
ERROR: code indent should never use tabs
#9111: FILE: target/xtensa/core-fsf/xtensa-modules.c:9067:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#9112: FILE: target/xtensa/core-fsf/xtensa-modules.c:9068:
+^I^I return 242; /* rsr.ccompare2 */$
ERROR: code indent should never use tabs
#9113: FILE: target/xtensa/core-fsf/xtensa-modules.c:9069:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#9114: FILE: target/xtensa/core-fsf/xtensa-modules.c:9070:
+^I^I return 181; /* rsr.misc0 */$
ERROR: code indent should never use tabs
#9115: FILE: target/xtensa/core-fsf/xtensa-modules.c:9071:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#9116: FILE: target/xtensa/core-fsf/xtensa-modules.c:9072:
+^I^I return 184; /* rsr.misc1 */$
ERROR: code indent should never use tabs
#9117: FILE: target/xtensa/core-fsf/xtensa-modules.c:9073:
+^I^I}$
ERROR: code indent should never use tabs
#9118: FILE: target/xtensa/core-fsf/xtensa-modules.c:9074:
+^I break;$
ERROR: code indent should never use tabs
#9119: FILE: target/xtensa/core-fsf/xtensa-modules.c:9075:
+^I case 1:$
ERROR: code indent should never use tabs
#9120: FILE: target/xtensa/core-fsf/xtensa-modules.c:9076:
+^I switch (Field_sr_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9120: FILE: target/xtensa/core-fsf/xtensa-modules.c:9076:
+ switch (Field_sr_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9121: FILE: target/xtensa/core-fsf/xtensa-modules.c:9077:
+^I^I{$
ERROR: code indent should never use tabs
#9122: FILE: target/xtensa/core-fsf/xtensa-modules.c:9078:
+^I^Icase 0:$
ERROR: code indent should never use tabs
#9123: FILE: target/xtensa/core-fsf/xtensa-modules.c:9079:
+^I^I return 126; /* wsr.lbeg */$
ERROR: code indent should never use tabs
#9124: FILE: target/xtensa/core-fsf/xtensa-modules.c:9080:
+^I^Icase 1:$
ERROR: code indent should never use tabs
#9125: FILE: target/xtensa/core-fsf/xtensa-modules.c:9081:
+^I^I return 120; /* wsr.lend */$
ERROR: code indent should never use tabs
#9126: FILE: target/xtensa/core-fsf/xtensa-modules.c:9082:
+^I^Icase 2:$
ERROR: code indent should never use tabs
#9127: FILE: target/xtensa/core-fsf/xtensa-modules.c:9083:
+^I^I return 123; /* wsr.lcount */$
ERROR: code indent should never use tabs
#9128: FILE: target/xtensa/core-fsf/xtensa-modules.c:9084:
+^I^Icase 3:$
ERROR: code indent should never use tabs
#9129: FILE: target/xtensa/core-fsf/xtensa-modules.c:9085:
+^I^I return 129; /* wsr.sar */$
ERROR: code indent should never use tabs
#9130: FILE: target/xtensa/core-fsf/xtensa-modules.c:9086:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#9131: FILE: target/xtensa/core-fsf/xtensa-modules.c:9087:
+^I^I return 132; /* wsr.litbase */$
ERROR: code indent should never use tabs
#9132: FILE: target/xtensa/core-fsf/xtensa-modules.c:9088:
+^I^Icase 72:$
ERROR: code indent should never use tabs
#9133: FILE: target/xtensa/core-fsf/xtensa-modules.c:9089:
+^I^I return 21; /* wsr.windowbase */$
ERROR: code indent should never use tabs
#9134: FILE: target/xtensa/core-fsf/xtensa-modules.c:9090:
+^I^Icase 73:$
ERROR: code indent should never use tabs
#9135: FILE: target/xtensa/core-fsf/xtensa-modules.c:9091:
+^I^I return 24; /* wsr.windowstart */$
ERROR: code indent should never use tabs
#9136: FILE: target/xtensa/core-fsf/xtensa-modules.c:9092:
+^I^Icase 83:$
ERROR: code indent should never use tabs
#9137: FILE: target/xtensa/core-fsf/xtensa-modules.c:9093:
+^I^I return 264; /* wsr.ptevaddr */$
ERROR: code indent should never use tabs
#9138: FILE: target/xtensa/core-fsf/xtensa-modules.c:9094:
+^I^Icase 90:$
ERROR: code indent should never use tabs
#9139: FILE: target/xtensa/core-fsf/xtensa-modules.c:9095:
+^I^I return 268; /* wsr.rasid */$
ERROR: code indent should never use tabs
#9140: FILE: target/xtensa/core-fsf/xtensa-modules.c:9096:
+^I^Icase 91:$
ERROR: code indent should never use tabs
#9141: FILE: target/xtensa/core-fsf/xtensa-modules.c:9097:
+^I^I return 271; /* wsr.itlbcfg */$
ERROR: code indent should never use tabs
#9142: FILE: target/xtensa/core-fsf/xtensa-modules.c:9098:
+^I^Icase 92:$
ERROR: code indent should never use tabs
#9143: FILE: target/xtensa/core-fsf/xtensa-modules.c:9099:
+^I^I return 274; /* wsr.dtlbcfg */$
ERROR: code indent should never use tabs
#9144: FILE: target/xtensa/core-fsf/xtensa-modules.c:9100:
+^I^Icase 96:$
ERROR: code indent should never use tabs
#9145: FILE: target/xtensa/core-fsf/xtensa-modules.c:9101:
+^I^I return 217; /* wsr.ibreakenable */$
ERROR: code indent should never use tabs
#9146: FILE: target/xtensa/core-fsf/xtensa-modules.c:9102:
+^I^Icase 104:$
ERROR: code indent should never use tabs
#9147: FILE: target/xtensa/core-fsf/xtensa-modules.c:9103:
+^I^I return 229; /* wsr.ddr */$
ERROR: code indent should never use tabs
#9148: FILE: target/xtensa/core-fsf/xtensa-modules.c:9104:
+^I^Icase 128:$
ERROR: code indent should never use tabs
#9149: FILE: target/xtensa/core-fsf/xtensa-modules.c:9105:
+^I^I return 211; /* wsr.ibreaka0 */$
ERROR: code indent should never use tabs
#9150: FILE: target/xtensa/core-fsf/xtensa-modules.c:9106:
+^I^Icase 129:$
ERROR: code indent should never use tabs
#9151: FILE: target/xtensa/core-fsf/xtensa-modules.c:9107:
+^I^I return 214; /* wsr.ibreaka1 */$
ERROR: code indent should never use tabs
#9152: FILE: target/xtensa/core-fsf/xtensa-modules.c:9108:
+^I^Icase 144:$
ERROR: code indent should never use tabs
#9153: FILE: target/xtensa/core-fsf/xtensa-modules.c:9109:
+^I^I return 199; /* wsr.dbreaka0 */$
ERROR: code indent should never use tabs
#9154: FILE: target/xtensa/core-fsf/xtensa-modules.c:9110:
+^I^Icase 145:$
ERROR: code indent should never use tabs
#9155: FILE: target/xtensa/core-fsf/xtensa-modules.c:9111:
+^I^I return 205; /* wsr.dbreaka1 */$
ERROR: code indent should never use tabs
#9156: FILE: target/xtensa/core-fsf/xtensa-modules.c:9112:
+^I^Icase 160:$
ERROR: code indent should never use tabs
#9157: FILE: target/xtensa/core-fsf/xtensa-modules.c:9113:
+^I^I return 202; /* wsr.dbreakc0 */$
ERROR: code indent should never use tabs
#9158: FILE: target/xtensa/core-fsf/xtensa-modules.c:9114:
+^I^Icase 161:$
ERROR: code indent should never use tabs
#9159: FILE: target/xtensa/core-fsf/xtensa-modules.c:9115:
+^I^I return 208; /* wsr.dbreakc1 */$
ERROR: code indent should never use tabs
#9160: FILE: target/xtensa/core-fsf/xtensa-modules.c:9116:
+^I^Icase 177:$
ERROR: code indent should never use tabs
#9161: FILE: target/xtensa/core-fsf/xtensa-modules.c:9117:
+^I^I return 140; /* wsr.epc1 */$
ERROR: code indent should never use tabs
#9162: FILE: target/xtensa/core-fsf/xtensa-modules.c:9118:
+^I^Icase 178:$
ERROR: code indent should never use tabs
#9163: FILE: target/xtensa/core-fsf/xtensa-modules.c:9119:
+^I^I return 146; /* wsr.epc2 */$
ERROR: code indent should never use tabs
#9164: FILE: target/xtensa/core-fsf/xtensa-modules.c:9120:
+^I^Icase 179:$
ERROR: code indent should never use tabs
#9165: FILE: target/xtensa/core-fsf/xtensa-modules.c:9121:
+^I^I return 152; /* wsr.epc3 */$
ERROR: code indent should never use tabs
#9166: FILE: target/xtensa/core-fsf/xtensa-modules.c:9122:
+^I^Icase 180:$
ERROR: code indent should never use tabs
#9167: FILE: target/xtensa/core-fsf/xtensa-modules.c:9123:
+^I^I return 158; /* wsr.epc4 */$
ERROR: code indent should never use tabs
#9168: FILE: target/xtensa/core-fsf/xtensa-modules.c:9124:
+^I^Icase 192:$
ERROR: code indent should never use tabs
#9169: FILE: target/xtensa/core-fsf/xtensa-modules.c:9125:
+^I^I return 176; /* wsr.depc */$
ERROR: code indent should never use tabs
#9170: FILE: target/xtensa/core-fsf/xtensa-modules.c:9126:
+^I^Icase 194:$
ERROR: code indent should never use tabs
#9171: FILE: target/xtensa/core-fsf/xtensa-modules.c:9127:
+^I^I return 164; /* wsr.eps2 */$
ERROR: code indent should never use tabs
#9172: FILE: target/xtensa/core-fsf/xtensa-modules.c:9128:
+^I^Icase 195:$
ERROR: code indent should never use tabs
#9173: FILE: target/xtensa/core-fsf/xtensa-modules.c:9129:
+^I^I return 167; /* wsr.eps3 */$
ERROR: code indent should never use tabs
#9174: FILE: target/xtensa/core-fsf/xtensa-modules.c:9130:
+^I^Icase 196:$
ERROR: code indent should never use tabs
#9175: FILE: target/xtensa/core-fsf/xtensa-modules.c:9131:
+^I^I return 170; /* wsr.eps4 */$
ERROR: code indent should never use tabs
#9176: FILE: target/xtensa/core-fsf/xtensa-modules.c:9132:
+^I^Icase 209:$
ERROR: code indent should never use tabs
#9177: FILE: target/xtensa/core-fsf/xtensa-modules.c:9133:
+^I^I return 143; /* wsr.excsave1 */$
ERROR: code indent should never use tabs
#9178: FILE: target/xtensa/core-fsf/xtensa-modules.c:9134:
+^I^Icase 210:$
ERROR: code indent should never use tabs
#9179: FILE: target/xtensa/core-fsf/xtensa-modules.c:9135:
+^I^I return 149; /* wsr.excsave2 */$
ERROR: code indent should never use tabs
#9180: FILE: target/xtensa/core-fsf/xtensa-modules.c:9136:
+^I^Icase 211:$
ERROR: code indent should never use tabs
#9181: FILE: target/xtensa/core-fsf/xtensa-modules.c:9137:
+^I^I return 155; /* wsr.excsave3 */$
ERROR: code indent should never use tabs
#9182: FILE: target/xtensa/core-fsf/xtensa-modules.c:9138:
+^I^Icase 212:$
ERROR: code indent should never use tabs
#9183: FILE: target/xtensa/core-fsf/xtensa-modules.c:9139:
+^I^I return 161; /* wsr.excsave4 */$
ERROR: code indent should never use tabs
#9184: FILE: target/xtensa/core-fsf/xtensa-modules.c:9140:
+^I^Icase 226:$
ERROR: code indent should never use tabs
#9185: FILE: target/xtensa/core-fsf/xtensa-modules.c:9141:
+^I^I return 191; /* wsr.intset */$
ERROR: code indent should never use tabs
#9186: FILE: target/xtensa/core-fsf/xtensa-modules.c:9142:
+^I^Icase 227:$
ERROR: code indent should never use tabs
#9187: FILE: target/xtensa/core-fsf/xtensa-modules.c:9143:
+^I^I return 192; /* wsr.intclear */$
ERROR: code indent should never use tabs
#9188: FILE: target/xtensa/core-fsf/xtensa-modules.c:9144:
+^I^Icase 228:$
ERROR: code indent should never use tabs
#9189: FILE: target/xtensa/core-fsf/xtensa-modules.c:9145:
+^I^I return 194; /* wsr.intenable */$
ERROR: code indent should never use tabs
#9190: FILE: target/xtensa/core-fsf/xtensa-modules.c:9146:
+^I^Icase 230:$
ERROR: code indent should never use tabs
#9191: FILE: target/xtensa/core-fsf/xtensa-modules.c:9147:
+^I^I return 137; /* wsr.ps */$
ERROR: code indent should never use tabs
#9192: FILE: target/xtensa/core-fsf/xtensa-modules.c:9148:
+^I^Icase 232:$
ERROR: code indent should never use tabs
#9193: FILE: target/xtensa/core-fsf/xtensa-modules.c:9149:
+^I^I return 179; /* wsr.exccause */$
ERROR: code indent should never use tabs
#9194: FILE: target/xtensa/core-fsf/xtensa-modules.c:9150:
+^I^Icase 233:$
ERROR: code indent should never use tabs
#9195: FILE: target/xtensa/core-fsf/xtensa-modules.c:9151:
+^I^I return 220; /* wsr.debugcause */$
ERROR: code indent should never use tabs
#9196: FILE: target/xtensa/core-fsf/xtensa-modules.c:9152:
+^I^Icase 234:$
ERROR: code indent should never use tabs
#9197: FILE: target/xtensa/core-fsf/xtensa-modules.c:9153:
+^I^I return 234; /* wsr.ccount */$
ERROR: code indent should never use tabs
#9198: FILE: target/xtensa/core-fsf/xtensa-modules.c:9154:
+^I^Icase 236:$
ERROR: code indent should never use tabs
#9199: FILE: target/xtensa/core-fsf/xtensa-modules.c:9155:
+^I^I return 223; /* wsr.icount */$
ERROR: code indent should never use tabs
#9200: FILE: target/xtensa/core-fsf/xtensa-modules.c:9156:
+^I^Icase 237:$
ERROR: code indent should never use tabs
#9201: FILE: target/xtensa/core-fsf/xtensa-modules.c:9157:
+^I^I return 226; /* wsr.icountlevel */$
ERROR: code indent should never use tabs
#9202: FILE: target/xtensa/core-fsf/xtensa-modules.c:9158:
+^I^Icase 238:$
ERROR: code indent should never use tabs
#9203: FILE: target/xtensa/core-fsf/xtensa-modules.c:9159:
+^I^I return 173; /* wsr.excvaddr */$
ERROR: code indent should never use tabs
#9204: FILE: target/xtensa/core-fsf/xtensa-modules.c:9160:
+^I^Icase 240:$
ERROR: code indent should never use tabs
#9205: FILE: target/xtensa/core-fsf/xtensa-modules.c:9161:
+^I^I return 237; /* wsr.ccompare0 */$
ERROR: code indent should never use tabs
#9206: FILE: target/xtensa/core-fsf/xtensa-modules.c:9162:
+^I^Icase 241:$
ERROR: code indent should never use tabs
#9207: FILE: target/xtensa/core-fsf/xtensa-modules.c:9163:
+^I^I return 240; /* wsr.ccompare1 */$
ERROR: code indent should never use tabs
#9208: FILE: target/xtensa/core-fsf/xtensa-modules.c:9164:
+^I^Icase 242:$
ERROR: code indent should never use tabs
#9209: FILE: target/xtensa/core-fsf/xtensa-modules.c:9165:
+^I^I return 243; /* wsr.ccompare2 */$
ERROR: code indent should never use tabs
#9210: FILE: target/xtensa/core-fsf/xtensa-modules.c:9166:
+^I^Icase 244:$
ERROR: code indent should never use tabs
#9211: FILE: target/xtensa/core-fsf/xtensa-modules.c:9167:
+^I^I return 182; /* wsr.misc0 */$
ERROR: code indent should never use tabs
#9212: FILE: target/xtensa/core-fsf/xtensa-modules.c:9168:
+^I^Icase 245:$
ERROR: code indent should never use tabs
#9213: FILE: target/xtensa/core-fsf/xtensa-modules.c:9169:
+^I^I return 185; /* wsr.misc1 */$
ERROR: code indent should never use tabs
#9214: FILE: target/xtensa/core-fsf/xtensa-modules.c:9170:
+^I^I}$
ERROR: code indent should never use tabs
#9215: FILE: target/xtensa/core-fsf/xtensa-modules.c:9171:
+^I break;$
ERROR: code indent should never use tabs
#9216: FILE: target/xtensa/core-fsf/xtensa-modules.c:9172:
+^I case 8:$
ERROR: code indent should never use tabs
#9217: FILE: target/xtensa/core-fsf/xtensa-modules.c:9173:
+^I return 89; /* moveqz */$
ERROR: code indent should never use tabs
#9218: FILE: target/xtensa/core-fsf/xtensa-modules.c:9174:
+^I case 9:$
ERROR: code indent should never use tabs
#9219: FILE: target/xtensa/core-fsf/xtensa-modules.c:9175:
+^I return 90; /* movnez */$
ERROR: code indent should never use tabs
#9220: FILE: target/xtensa/core-fsf/xtensa-modules.c:9176:
+^I case 10:$
ERROR: code indent should never use tabs
#9221: FILE: target/xtensa/core-fsf/xtensa-modules.c:9177:
+^I return 91; /* movltz */$
ERROR: code indent should never use tabs
#9222: FILE: target/xtensa/core-fsf/xtensa-modules.c:9178:
+^I case 11:$
ERROR: code indent should never use tabs
#9223: FILE: target/xtensa/core-fsf/xtensa-modules.c:9179:
+^I return 92; /* movgez */$
ERROR: code indent should never use tabs
#9224: FILE: target/xtensa/core-fsf/xtensa-modules.c:9180:
+^I }$
ERROR: code indent should never use tabs
#9225: FILE: target/xtensa/core-fsf/xtensa-modules.c:9181:
+^I break;$
ERROR: code indent should never use tabs
#9226: FILE: target/xtensa/core-fsf/xtensa-modules.c:9182:
+^Icase 4:$
ERROR: code indent should never use tabs
#9227: FILE: target/xtensa/core-fsf/xtensa-modules.c:9183:
+^Icase 5:$
ERROR: code indent should never use tabs
#9228: FILE: target/xtensa/core-fsf/xtensa-modules.c:9184:
+^I return 76; /* extui */$
ERROR: code indent should never use tabs
#9229: FILE: target/xtensa/core-fsf/xtensa-modules.c:9185:
+^Icase 9:$
ERROR: code indent should never use tabs
#9230: FILE: target/xtensa/core-fsf/xtensa-modules.c:9186:
+^I switch (Field_op2_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9230: FILE: target/xtensa/core-fsf/xtensa-modules.c:9186:
+ switch (Field_op2_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9231: FILE: target/xtensa/core-fsf/xtensa-modules.c:9187:
+^I {$
ERROR: code indent should never use tabs
#9232: FILE: target/xtensa/core-fsf/xtensa-modules.c:9188:
+^I case 0:$
ERROR: code indent should never use tabs
#9233: FILE: target/xtensa/core-fsf/xtensa-modules.c:9189:
+^I return 18; /* l32e */$
ERROR: code indent should never use tabs
#9234: FILE: target/xtensa/core-fsf/xtensa-modules.c:9190:
+^I case 4:$
ERROR: code indent should never use tabs
#9235: FILE: target/xtensa/core-fsf/xtensa-modules.c:9191:
+^I return 19; /* s32e */$
ERROR: code indent should never use tabs
#9236: FILE: target/xtensa/core-fsf/xtensa-modules.c:9192:
+^I }$
ERROR: code indent should never use tabs
#9237: FILE: target/xtensa/core-fsf/xtensa-modules.c:9193:
+^I break;$
ERROR: code indent should never use tabs
#9238: FILE: target/xtensa/core-fsf/xtensa-modules.c:9194:
+^I}$
ERROR: that open brace { should be on the previous line
#9243: FILE: target/xtensa/core-fsf/xtensa-modules.c:9199:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9244: FILE: target/xtensa/core-fsf/xtensa-modules.c:9200:
+^I{$
ERROR: code indent should never use tabs
#9245: FILE: target/xtensa/core-fsf/xtensa-modules.c:9201:
+^Icase 0:$
ERROR: code indent should never use tabs
#9246: FILE: target/xtensa/core-fsf/xtensa-modules.c:9202:
+^I return 84; /* l8ui */$
ERROR: code indent should never use tabs
#9247: FILE: target/xtensa/core-fsf/xtensa-modules.c:9203:
+^Icase 1:$
ERROR: code indent should never use tabs
#9248: FILE: target/xtensa/core-fsf/xtensa-modules.c:9204:
+^I return 80; /* l16ui */$
ERROR: code indent should never use tabs
#9249: FILE: target/xtensa/core-fsf/xtensa-modules.c:9205:
+^Icase 2:$
ERROR: code indent should never use tabs
#9250: FILE: target/xtensa/core-fsf/xtensa-modules.c:9206:
+^I return 82; /* l32i */$
ERROR: code indent should never use tabs
#9251: FILE: target/xtensa/core-fsf/xtensa-modules.c:9207:
+^Icase 4:$
ERROR: code indent should never use tabs
#9252: FILE: target/xtensa/core-fsf/xtensa-modules.c:9208:
+^I return 99; /* s8i */$
ERROR: code indent should never use tabs
#9253: FILE: target/xtensa/core-fsf/xtensa-modules.c:9209:
+^Icase 5:$
ERROR: code indent should never use tabs
#9254: FILE: target/xtensa/core-fsf/xtensa-modules.c:9210:
+^I return 97; /* s16i */$
ERROR: code indent should never use tabs
#9255: FILE: target/xtensa/core-fsf/xtensa-modules.c:9211:
+^Icase 6:$
ERROR: code indent should never use tabs
#9256: FILE: target/xtensa/core-fsf/xtensa-modules.c:9212:
+^I return 98; /* s32i */$
ERROR: code indent should never use tabs
#9257: FILE: target/xtensa/core-fsf/xtensa-modules.c:9213:
+^Icase 7:$
ERROR: code indent should never use tabs
#9258: FILE: target/xtensa/core-fsf/xtensa-modules.c:9214:
+^I switch (Field_t_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9258: FILE: target/xtensa/core-fsf/xtensa-modules.c:9214:
+ switch (Field_t_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9259: FILE: target/xtensa/core-fsf/xtensa-modules.c:9215:
+^I {$
ERROR: code indent should never use tabs
#9260: FILE: target/xtensa/core-fsf/xtensa-modules.c:9216:
+^I case 0:$
ERROR: code indent should never use tabs
#9261: FILE: target/xtensa/core-fsf/xtensa-modules.c:9217:
+^I return 258; /* dpfr */$
ERROR: code indent should never use tabs
#9262: FILE: target/xtensa/core-fsf/xtensa-modules.c:9218:
+^I case 1:$
ERROR: code indent should never use tabs
#9263: FILE: target/xtensa/core-fsf/xtensa-modules.c:9219:
+^I return 259; /* dpfw */$
ERROR: code indent should never use tabs
#9264: FILE: target/xtensa/core-fsf/xtensa-modules.c:9220:
+^I case 2:$
ERROR: code indent should never use tabs
#9265: FILE: target/xtensa/core-fsf/xtensa-modules.c:9221:
+^I return 260; /* dpfro */$
ERROR: code indent should never use tabs
#9266: FILE: target/xtensa/core-fsf/xtensa-modules.c:9222:
+^I case 3:$
ERROR: code indent should never use tabs
#9267: FILE: target/xtensa/core-fsf/xtensa-modules.c:9223:
+^I return 261; /* dpfwo */$
ERROR: code indent should never use tabs
#9268: FILE: target/xtensa/core-fsf/xtensa-modules.c:9224:
+^I case 4:$
ERROR: code indent should never use tabs
#9269: FILE: target/xtensa/core-fsf/xtensa-modules.c:9225:
+^I return 252; /* dhwb */$
ERROR: code indent should never use tabs
#9270: FILE: target/xtensa/core-fsf/xtensa-modules.c:9226:
+^I case 5:$
ERROR: code indent should never use tabs
#9271: FILE: target/xtensa/core-fsf/xtensa-modules.c:9227:
+^I return 253; /* dhwbi */$
ERROR: code indent should never use tabs
#9272: FILE: target/xtensa/core-fsf/xtensa-modules.c:9228:
+^I case 6:$
ERROR: code indent should never use tabs
#9273: FILE: target/xtensa/core-fsf/xtensa-modules.c:9229:
+^I return 256; /* dhi */$
ERROR: code indent should never use tabs
#9274: FILE: target/xtensa/core-fsf/xtensa-modules.c:9230:
+^I case 7:$
ERROR: code indent should never use tabs
#9275: FILE: target/xtensa/core-fsf/xtensa-modules.c:9231:
+^I return 257; /* dii */$
ERROR: code indent should never use tabs
#9276: FILE: target/xtensa/core-fsf/xtensa-modules.c:9232:
+^I case 8:$
ERROR: code indent should never use tabs
#9277: FILE: target/xtensa/core-fsf/xtensa-modules.c:9233:
+^I switch (Field_op1_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9277: FILE: target/xtensa/core-fsf/xtensa-modules.c:9233:
+ switch (Field_op1_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9278: FILE: target/xtensa/core-fsf/xtensa-modules.c:9234:
+^I^I{$
ERROR: code indent should never use tabs
#9279: FILE: target/xtensa/core-fsf/xtensa-modules.c:9235:
+^I^Icase 4:$
ERROR: code indent should never use tabs
#9280: FILE: target/xtensa/core-fsf/xtensa-modules.c:9236:
+^I^I return 254; /* diwb */$
ERROR: code indent should never use tabs
#9281: FILE: target/xtensa/core-fsf/xtensa-modules.c:9237:
+^I^Icase 5:$
ERROR: code indent should never use tabs
#9282: FILE: target/xtensa/core-fsf/xtensa-modules.c:9238:
+^I^I return 255; /* diwbi */$
ERROR: code indent should never use tabs
#9283: FILE: target/xtensa/core-fsf/xtensa-modules.c:9239:
+^I^I}$
ERROR: code indent should never use tabs
#9284: FILE: target/xtensa/core-fsf/xtensa-modules.c:9240:
+^I break;$
ERROR: code indent should never use tabs
#9285: FILE: target/xtensa/core-fsf/xtensa-modules.c:9241:
+^I case 12:$
ERROR: code indent should never use tabs
#9286: FILE: target/xtensa/core-fsf/xtensa-modules.c:9242:
+^I return 245; /* ipf */$
ERROR: code indent should never use tabs
#9287: FILE: target/xtensa/core-fsf/xtensa-modules.c:9243:
+^I case 14:$
ERROR: code indent should never use tabs
#9288: FILE: target/xtensa/core-fsf/xtensa-modules.c:9244:
+^I return 246; /* ihi */$
ERROR: code indent should never use tabs
#9289: FILE: target/xtensa/core-fsf/xtensa-modules.c:9245:
+^I case 15:$
ERROR: code indent should never use tabs
#9290: FILE: target/xtensa/core-fsf/xtensa-modules.c:9246:
+^I return 247; /* iii */$
ERROR: code indent should never use tabs
#9291: FILE: target/xtensa/core-fsf/xtensa-modules.c:9247:
+^I }$
ERROR: code indent should never use tabs
#9292: FILE: target/xtensa/core-fsf/xtensa-modules.c:9248:
+^I break;$
ERROR: code indent should never use tabs
#9293: FILE: target/xtensa/core-fsf/xtensa-modules.c:9249:
+^Icase 9:$
ERROR: code indent should never use tabs
#9294: FILE: target/xtensa/core-fsf/xtensa-modules.c:9250:
+^I return 81; /* l16si */$
ERROR: code indent should never use tabs
#9295: FILE: target/xtensa/core-fsf/xtensa-modules.c:9251:
+^Icase 10:$
ERROR: code indent should never use tabs
#9296: FILE: target/xtensa/core-fsf/xtensa-modules.c:9252:
+^I return 88; /* movi */$
ERROR: code indent should never use tabs
#9297: FILE: target/xtensa/core-fsf/xtensa-modules.c:9253:
+^Icase 12:$
ERROR: code indent should never use tabs
#9298: FILE: target/xtensa/core-fsf/xtensa-modules.c:9254:
+^I return 37; /* addi */$
ERROR: code indent should never use tabs
#9299: FILE: target/xtensa/core-fsf/xtensa-modules.c:9255:
+^Icase 13:$
ERROR: code indent should never use tabs
#9300: FILE: target/xtensa/core-fsf/xtensa-modules.c:9256:
+^I return 38; /* addmi */$
ERROR: code indent should never use tabs
#9301: FILE: target/xtensa/core-fsf/xtensa-modules.c:9257:
+^I}$
ERROR: that open brace { should be on the previous line
#9304: FILE: target/xtensa/core-fsf/xtensa-modules.c:9260:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9305: FILE: target/xtensa/core-fsf/xtensa-modules.c:9261:
+^I{$
ERROR: code indent should never use tabs
#9306: FILE: target/xtensa/core-fsf/xtensa-modules.c:9262:
+^Icase 0:$
ERROR: code indent should never use tabs
#9307: FILE: target/xtensa/core-fsf/xtensa-modules.c:9263:
+^I return 74; /* call0 */$
ERROR: code indent should never use tabs
#9308: FILE: target/xtensa/core-fsf/xtensa-modules.c:9264:
+^Icase 1:$
ERROR: code indent should never use tabs
#9309: FILE: target/xtensa/core-fsf/xtensa-modules.c:9265:
+^I return 7; /* call4 */$
ERROR: code indent should never use tabs
#9310: FILE: target/xtensa/core-fsf/xtensa-modules.c:9266:
+^Icase 2:$
ERROR: code indent should never use tabs
#9311: FILE: target/xtensa/core-fsf/xtensa-modules.c:9267:
+^I return 6; /* call8 */$
ERROR: code indent should never use tabs
#9312: FILE: target/xtensa/core-fsf/xtensa-modules.c:9268:
+^Icase 3:$
ERROR: code indent should never use tabs
#9313: FILE: target/xtensa/core-fsf/xtensa-modules.c:9269:
+^I return 5; /* call12 */$
ERROR: code indent should never use tabs
#9314: FILE: target/xtensa/core-fsf/xtensa-modules.c:9270:
+^I}$
ERROR: that open brace { should be on the previous line
#9317: FILE: target/xtensa/core-fsf/xtensa-modules.c:9273:
+ switch (Field_n_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9318: FILE: target/xtensa/core-fsf/xtensa-modules.c:9274:
+^I{$
ERROR: code indent should never use tabs
#9319: FILE: target/xtensa/core-fsf/xtensa-modules.c:9275:
+^Icase 0:$
ERROR: code indent should never use tabs
#9320: FILE: target/xtensa/core-fsf/xtensa-modules.c:9276:
+^I return 78; /* j */$
ERROR: code indent should never use tabs
#9321: FILE: target/xtensa/core-fsf/xtensa-modules.c:9277:
+^Icase 1:$
ERROR: code indent should never use tabs
#9322: FILE: target/xtensa/core-fsf/xtensa-modules.c:9278:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9322: FILE: target/xtensa/core-fsf/xtensa-modules.c:9278:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9323: FILE: target/xtensa/core-fsf/xtensa-modules.c:9279:
+^I {$
ERROR: code indent should never use tabs
#9324: FILE: target/xtensa/core-fsf/xtensa-modules.c:9280:
+^I case 0:$
ERROR: code indent should never use tabs
#9325: FILE: target/xtensa/core-fsf/xtensa-modules.c:9281:
+^I return 70; /* beqz */$
ERROR: code indent should never use tabs
#9326: FILE: target/xtensa/core-fsf/xtensa-modules.c:9282:
+^I case 1:$
ERROR: code indent should never use tabs
#9327: FILE: target/xtensa/core-fsf/xtensa-modules.c:9283:
+^I return 71; /* bnez */$
ERROR: code indent should never use tabs
#9328: FILE: target/xtensa/core-fsf/xtensa-modules.c:9284:
+^I case 2:$
ERROR: code indent should never use tabs
#9329: FILE: target/xtensa/core-fsf/xtensa-modules.c:9285:
+^I return 73; /* bltz */$
ERROR: code indent should never use tabs
#9330: FILE: target/xtensa/core-fsf/xtensa-modules.c:9286:
+^I case 3:$
ERROR: code indent should never use tabs
#9331: FILE: target/xtensa/core-fsf/xtensa-modules.c:9287:
+^I return 72; /* bgez */$
ERROR: code indent should never use tabs
#9332: FILE: target/xtensa/core-fsf/xtensa-modules.c:9288:
+^I }$
ERROR: code indent should never use tabs
#9333: FILE: target/xtensa/core-fsf/xtensa-modules.c:9289:
+^I break;$
ERROR: code indent should never use tabs
#9334: FILE: target/xtensa/core-fsf/xtensa-modules.c:9290:
+^Icase 2:$
ERROR: code indent should never use tabs
#9335: FILE: target/xtensa/core-fsf/xtensa-modules.c:9291:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9335: FILE: target/xtensa/core-fsf/xtensa-modules.c:9291:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9336: FILE: target/xtensa/core-fsf/xtensa-modules.c:9292:
+^I {$
ERROR: code indent should never use tabs
#9337: FILE: target/xtensa/core-fsf/xtensa-modules.c:9293:
+^I case 0:$
ERROR: code indent should never use tabs
#9338: FILE: target/xtensa/core-fsf/xtensa-modules.c:9294:
+^I return 50; /* beqi */$
ERROR: code indent should never use tabs
#9339: FILE: target/xtensa/core-fsf/xtensa-modules.c:9295:
+^I case 1:$
ERROR: code indent should never use tabs
#9340: FILE: target/xtensa/core-fsf/xtensa-modules.c:9296:
+^I return 51; /* bnei */$
ERROR: code indent should never use tabs
#9341: FILE: target/xtensa/core-fsf/xtensa-modules.c:9297:
+^I case 2:$
ERROR: code indent should never use tabs
#9342: FILE: target/xtensa/core-fsf/xtensa-modules.c:9298:
+^I return 53; /* blti */$
ERROR: code indent should never use tabs
#9343: FILE: target/xtensa/core-fsf/xtensa-modules.c:9299:
+^I case 3:$
ERROR: code indent should never use tabs
#9344: FILE: target/xtensa/core-fsf/xtensa-modules.c:9300:
+^I return 52; /* bgei */$
ERROR: code indent should never use tabs
#9345: FILE: target/xtensa/core-fsf/xtensa-modules.c:9301:
+^I }$
ERROR: code indent should never use tabs
#9346: FILE: target/xtensa/core-fsf/xtensa-modules.c:9302:
+^I break;$
ERROR: code indent should never use tabs
#9347: FILE: target/xtensa/core-fsf/xtensa-modules.c:9303:
+^Icase 3:$
ERROR: code indent should never use tabs
#9348: FILE: target/xtensa/core-fsf/xtensa-modules.c:9304:
+^I switch (Field_m_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9348: FILE: target/xtensa/core-fsf/xtensa-modules.c:9304:
+ switch (Field_m_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9349: FILE: target/xtensa/core-fsf/xtensa-modules.c:9305:
+^I {$
ERROR: code indent should never use tabs
#9350: FILE: target/xtensa/core-fsf/xtensa-modules.c:9306:
+^I case 0:$
ERROR: code indent should never use tabs
#9351: FILE: target/xtensa/core-fsf/xtensa-modules.c:9307:
+^I return 11; /* entry */$
ERROR: code indent should never use tabs
#9352: FILE: target/xtensa/core-fsf/xtensa-modules.c:9308:
+^I case 1:$
ERROR: code indent should never use tabs
#9353: FILE: target/xtensa/core-fsf/xtensa-modules.c:9309:
+^I switch (Field_r_Slot_inst_get (insn))$
ERROR: that open brace { should be on the previous line
#9353: FILE: target/xtensa/core-fsf/xtensa-modules.c:9309:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9354: FILE: target/xtensa/core-fsf/xtensa-modules.c:9310:
+^I^I{$
ERROR: code indent should never use tabs
#9355: FILE: target/xtensa/core-fsf/xtensa-modules.c:9311:
+^I^Icase 8:$
ERROR: code indent should never use tabs
#9356: FILE: target/xtensa/core-fsf/xtensa-modules.c:9312:
+^I^I return 85; /* loop */$
ERROR: code indent should never use tabs
#9357: FILE: target/xtensa/core-fsf/xtensa-modules.c:9313:
+^I^Icase 9:$
ERROR: code indent should never use tabs
#9358: FILE: target/xtensa/core-fsf/xtensa-modules.c:9314:
+^I^I return 86; /* loopnez */$
ERROR: code indent should never use tabs
#9359: FILE: target/xtensa/core-fsf/xtensa-modules.c:9315:
+^I^Icase 10:$
ERROR: code indent should never use tabs
#9360: FILE: target/xtensa/core-fsf/xtensa-modules.c:9316:
+^I^I return 87; /* loopgtz */$
ERROR: code indent should never use tabs
#9361: FILE: target/xtensa/core-fsf/xtensa-modules.c:9317:
+^I^I}$
ERROR: code indent should never use tabs
#9362: FILE: target/xtensa/core-fsf/xtensa-modules.c:9318:
+^I break;$
ERROR: code indent should never use tabs
#9363: FILE: target/xtensa/core-fsf/xtensa-modules.c:9319:
+^I case 2:$
ERROR: code indent should never use tabs
#9364: FILE: target/xtensa/core-fsf/xtensa-modules.c:9320:
+^I return 57; /* bltui */$
ERROR: code indent should never use tabs
#9365: FILE: target/xtensa/core-fsf/xtensa-modules.c:9321:
+^I case 3:$
ERROR: code indent should never use tabs
#9366: FILE: target/xtensa/core-fsf/xtensa-modules.c:9322:
+^I return 56; /* bgeui */$
ERROR: code indent should never use tabs
#9367: FILE: target/xtensa/core-fsf/xtensa-modules.c:9323:
+^I }$
ERROR: code indent should never use tabs
#9368: FILE: target/xtensa/core-fsf/xtensa-modules.c:9324:
+^I break;$
ERROR: code indent should never use tabs
#9369: FILE: target/xtensa/core-fsf/xtensa-modules.c:9325:
+^I}$
ERROR: that open brace { should be on the previous line
#9372: FILE: target/xtensa/core-fsf/xtensa-modules.c:9328:
+ switch (Field_r_Slot_inst_get (insn))
+ {
ERROR: code indent should never use tabs
#9373: FILE: target/xtensa/core-fsf/xtensa-modules.c:9329:
+^I{$
ERROR: code indent should never use tabs
#9374: FILE: target/xtensa/core-fsf/xtensa-modules.c:9330:
+^Icase 0:$
ERROR: code indent should never use tabs
#9375: FILE: target/xtensa/core-fsf/xtensa-modules.c:9331:
+^I return 65; /* bnone */$
ERROR: code indent should never use tabs
#9376: FILE: target/xtensa/core-fsf/xtensa-modules.c:9332:
+^Icase 1:$
ERROR: code indent should never use tabs
#9377: FILE: target/xtensa/core-fsf/xtensa-modules.c:9333:
+^I return 58; /* beq */$
ERROR: code indent should never use tabs
#9378: FILE: target/xtensa/core-fsf/xtensa-modules.c:9334:
+^Icase 2:$
ERROR: code indent should never use tabs
#9379: FILE: target/xtensa/core-fsf/xtensa-modules.c:9335:
+^I return 61; /* blt */$
ERROR: code indent should never use tabs
#9380: FILE: target/xtensa/core-fsf/xtensa-modules.c:9336:
+^Icase 3:$
ERROR: code indent should never use tabs
#9381: FILE: target/xtensa/core-fsf/xtensa-modules.c:9337:
+^I return 63; /* bltu */$
ERROR: code indent should never use tabs
#9382: FILE: target/xtensa/core-fsf/xtensa-modules.c:9338:
+^Icase 4:$
ERROR: code indent should never use tabs
#9383: FILE: target/xtensa/core-fsf/xtensa-modules.c:9339:
+^I return 66; /* ball */$
ERROR: code indent should never use tabs
#9384: FILE: target/xtensa/core-fsf/xtensa-modules.c:9340:
+^Icase 5:$
ERROR: code indent should never use tabs
#9385: FILE: target/xtensa/core-fsf/xtensa-modules.c:9341:
+^I return 68; /* bbc */$
ERROR: code indent should never use tabs
#9386: FILE: target/xtensa/core-fsf/xtensa-modules.c:9342:
+^Icase 6:$
ERROR: code indent should never use tabs
#9387: FILE: target/xtensa/core-fsf/xtensa-modules.c:9343:
+^Icase 7:$
ERROR: code indent should never use tabs
#9388: FILE: target/xtensa/core-fsf/xtensa-modules.c:9344:
+^I return 54; /* bbci */$
ERROR: code indent should never use tabs
#9389: FILE: target/xtensa/core-fsf/xtensa-modules.c:9345:
+^Icase 8:$
ERROR: code indent should never use tabs
#9390: FILE: target/xtensa/core-fsf/xtensa-modules.c:9346:
+^I return 64; /* bany */$
ERROR: code indent should never use tabs
#9391: FILE: target/xtensa/core-fsf/xtensa-modules.c:9347:
+^Icase 9:$
ERROR: code indent should never use tabs
#9392: FILE: target/xtensa/core-fsf/xtensa-modules.c:9348:
+^I return 59; /* bne */$
ERROR: code indent should never use tabs
#9393: FILE: target/xtensa/core-fsf/xtensa-modules.c:9349:
+^Icase 10:$
ERROR: code indent should never use tabs
#9394: FILE: target/xtensa/core-fsf/xtensa-modules.c:9350:
+^I return 60; /* bge */$
ERROR: code indent should never use tabs
#9395: FILE: target/xtensa/core-fsf/xtensa-modules.c:9351:
+^Icase 11:$
ERROR: code indent should never use tabs
#9396: FILE: target/xtensa/core-fsf/xtensa-modules.c:9352:
+^I return 62; /* bgeu */$
ERROR: code indent should never use tabs
#9397: FILE: target/xtensa/core-fsf/xtensa-modules.c:9353:
+^Icase 12:$
ERROR: code indent should never use tabs
#9398: FILE: target/xtensa/core-fsf/xtensa-modules.c:9354:
+^I return 67; /* bnall */$
ERROR: code indent should never use tabs
#9399: FILE: target/xtensa/core-fsf/xtensa-modules.c:9355:
+^Icase 13:$
ERROR: code indent should never use tabs
#9400: FILE: target/xtensa/core-fsf/xtensa-modules.c:9356:
+^I return 69; /* bbs */$
ERROR: code indent should never use tabs
#9401: FILE: target/xtensa/core-fsf/xtensa-modules.c:9357:
+^Icase 14:$
ERROR: code indent should never use tabs
#9402: FILE: target/xtensa/core-fsf/xtensa-modules.c:9358:
+^Icase 15:$
ERROR: code indent should never use tabs
#9403: FILE: target/xtensa/core-fsf/xtensa-modules.c:9359:
+^I return 55; /* bbsi */$
ERROR: code indent should never use tabs
#9404: FILE: target/xtensa/core-fsf/xtensa-modules.c:9360:
+^I}$
ERROR: that open brace { should be on the previous line
#9413: FILE: target/xtensa/core-fsf/xtensa-modules.c:9369:
+ switch (Field_op0_Slot_inst16b_get (insn))
+ {
ERROR: that open brace { should be on the previous line
#9416: FILE: target/xtensa/core-fsf/xtensa-modules.c:9372:
+ switch (Field_i_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#9417: FILE: target/xtensa/core-fsf/xtensa-modules.c:9373:
+^I{$
ERROR: code indent should never use tabs
#9418: FILE: target/xtensa/core-fsf/xtensa-modules.c:9374:
+^Icase 0:$
ERROR: code indent should never use tabs
#9419: FILE: target/xtensa/core-fsf/xtensa-modules.c:9375:
+^I return 33; /* movi.n */$
ERROR: code indent should never use tabs
#9420: FILE: target/xtensa/core-fsf/xtensa-modules.c:9376:
+^Icase 1:$
ERROR: code indent should never use tabs
#9421: FILE: target/xtensa/core-fsf/xtensa-modules.c:9377:
+^I switch (Field_z_Slot_inst16b_get (insn))$
ERROR: that open brace { should be on the previous line
#9421: FILE: target/xtensa/core-fsf/xtensa-modules.c:9377:
+ switch (Field_z_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#9422: FILE: target/xtensa/core-fsf/xtensa-modules.c:9378:
+^I {$
ERROR: code indent should never use tabs
#9423: FILE: target/xtensa/core-fsf/xtensa-modules.c:9379:
+^I case 0:$
ERROR: code indent should never use tabs
#9424: FILE: target/xtensa/core-fsf/xtensa-modules.c:9380:
+^I return 28; /* beqz.n */$
ERROR: code indent should never use tabs
#9425: FILE: target/xtensa/core-fsf/xtensa-modules.c:9381:
+^I case 1:$
ERROR: code indent should never use tabs
#9426: FILE: target/xtensa/core-fsf/xtensa-modules.c:9382:
+^I return 29; /* bnez.n */$
ERROR: code indent should never use tabs
#9427: FILE: target/xtensa/core-fsf/xtensa-modules.c:9383:
+^I }$
ERROR: code indent should never use tabs
#9428: FILE: target/xtensa/core-fsf/xtensa-modules.c:9384:
+^I break;$
ERROR: code indent should never use tabs
#9429: FILE: target/xtensa/core-fsf/xtensa-modules.c:9385:
+^I}$
ERROR: that open brace { should be on the previous line
#9432: FILE: target/xtensa/core-fsf/xtensa-modules.c:9388:
+ switch (Field_r_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#9433: FILE: target/xtensa/core-fsf/xtensa-modules.c:9389:
+^I{$
ERROR: code indent should never use tabs
#9434: FILE: target/xtensa/core-fsf/xtensa-modules.c:9390:
+^Icase 0:$
ERROR: code indent should never use tabs
#9435: FILE: target/xtensa/core-fsf/xtensa-modules.c:9391:
+^I return 32; /* mov.n */$
ERROR: code indent should never use tabs
#9436: FILE: target/xtensa/core-fsf/xtensa-modules.c:9392:
+^Icase 15:$
ERROR: code indent should never use tabs
#9437: FILE: target/xtensa/core-fsf/xtensa-modules.c:9393:
+^I switch (Field_t_Slot_inst16b_get (insn))$
ERROR: that open brace { should be on the previous line
#9437: FILE: target/xtensa/core-fsf/xtensa-modules.c:9393:
+ switch (Field_t_Slot_inst16b_get (insn))
+ {
ERROR: code indent should never use tabs
#9438: FILE: target/xtensa/core-fsf/xtensa-modules.c:9394:
+^I {$
ERROR: code indent should never use tabs
#9439: FILE: target/xtensa/core-fsf/xtensa-modules.c:9395:
+^I case 0:$
ERROR: code indent should never use tabs
#9440: FILE: target/xtensa/core-fsf/xtensa-modules.c:9396:
+^I return 35; /* ret.n */$
ERROR: code indent should never use tabs
#9441: FILE: target/xtensa/core-fsf/xtensa-modules.c:9397:
+^I case 1:$
ERROR: code indent should never use tabs
#9442: FILE: target/xtensa/core-fsf/xtensa-modules.c:9398:
+^I return 15; /* retw.n */$
ERROR: code indent should never use tabs
#9443: FILE: target/xtensa/core-fsf/xtensa-modules.c:9399:
+^I case 2:$
ERROR: code indent should never use tabs
#9444: FILE: target/xtensa/core-fsf/xtensa-modules.c:9400:
+^I return 197; /* break.n */$
ERROR: code indent should never use tabs
#9445: FILE: target/xtensa/core-fsf/xtensa-modules.c:9401:
+^I case 3:$
ERROR: code indent should never use tabs
#9446: FILE: target/xtensa/core-fsf/xtensa-modules.c:9402:
+^I if (Field_s_Slot_inst16b_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#9446: FILE: target/xtensa/core-fsf/xtensa-modules.c:9402:
+ if (Field_s_Slot_inst16b_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#9447: FILE: target/xtensa/core-fsf/xtensa-modules.c:9403:
+^I^Ireturn 34; /* nop.n */$
ERROR: code indent should never use tabs
#9448: FILE: target/xtensa/core-fsf/xtensa-modules.c:9404:
+^I break;$
ERROR: code indent should never use tabs
#9449: FILE: target/xtensa/core-fsf/xtensa-modules.c:9405:
+^I case 6:$
ERROR: code indent should never use tabs
#9450: FILE: target/xtensa/core-fsf/xtensa-modules.c:9406:
+^I if (Field_s_Slot_inst16b_get (insn) == 0)$
ERROR: braces {} are necessary for all arms of this statement
#9450: FILE: target/xtensa/core-fsf/xtensa-modules.c:9406:
+ if (Field_s_Slot_inst16b_get (insn) == 0)
[...]
ERROR: code indent should never use tabs
#9451: FILE: target/xtensa/core-fsf/xtensa-modules.c:9407:
+^I^Ireturn 30; /* ill.n */$
ERROR: code indent should never use tabs
#9452: FILE: target/xtensa/core-fsf/xtensa-modules.c:9408:
+^I break;$
ERROR: code indent should never use tabs
#9453: FILE: target/xtensa/core-fsf/xtensa-modules.c:9409:
+^I }$
ERROR: code indent should never use tabs
#9454: FILE: target/xtensa/core-fsf/xtensa-modules.c:9410:
+^I break;$
ERROR: code indent should never use tabs
#9455: FILE: target/xtensa/core-fsf/xtensa-modules.c:9411:
+^I}$
ERROR: that open brace { should be on the previous line
#9464: FILE: target/xtensa/core-fsf/xtensa-modules.c:9420:
+ switch (Field_op0_Slot_inst16a_get (insn))
+ {
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#9478: FILE: target/xtensa/core-fsf/xtensa-modules.c:9434:
+
^
ERROR: trailing whitespace
#9478: FILE: target/xtensa/core-fsf/xtensa-modules.c:9434:
+^L$
ERROR: code indent should never use tabs
#9483: FILE: target/xtensa/core-fsf/xtensa-modules.c:9439:
+^I^I^I xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#9490: FILE: target/xtensa/core-fsf/xtensa-modules.c:9446:
+^I^I^I const xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#9497: FILE: target/xtensa/core-fsf/xtensa-modules.c:9453:
+^I^I^I^Ixtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#9504: FILE: target/xtensa/core-fsf/xtensa-modules.c:9460:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#9511: FILE: target/xtensa/core-fsf/xtensa-modules.c:9467:
+^I^I^I^Ixtensa_insnbuf slotbuf)$
ERROR: code indent should never use tabs
#9518: FILE: target/xtensa/core-fsf/xtensa-modules.c:9474:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#9796: FILE: target/xtensa/core-fsf/xtensa-modules.c:9752:
+
^
ERROR: trailing whitespace
#9796: FILE: target/xtensa/core-fsf/xtensa-modules.c:9752:
+^L$
ERROR: space prohibited between function name and open parenthesis '('
#9831: FILE: target/xtensa/core-fsf/xtensa-modules.c:9787:
+format_decoder (const xtensa_insnbuf insn)
ERROR: braces {} are necessary for all arms of this statement
#9833: FILE: target/xtensa/core-fsf/xtensa-modules.c:9789:
+ if ((insn[0] & 0x800000) == 0)
[...]
ERROR: braces {} are necessary for all arms of this statement
#9835: FILE: target/xtensa/core-fsf/xtensa-modules.c:9791:
+ if ((insn[0] & 0xc00000) == 0x800000)
[...]
ERROR: braces {} are necessary for all arms of this statement
#9837: FILE: target/xtensa/core-fsf/xtensa-modules.c:9793:
+ if ((insn[0] & 0xe00000) == 0xc00000)
[...]
ERROR: space prohibited between function name and open parenthesis '('
#9862: FILE: target/xtensa/core-fsf/xtensa-modules.c:9818:
+length_decoder (const unsigned char *insn)
ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#9868: FILE: target/xtensa/core-fsf/xtensa-modules.c:9824:
+
^
ERROR: trailing whitespace
#9868: FILE: target/xtensa/core-fsf/xtensa-modules.c:9824:
+^L$
total: 920 errors, 0 warnings, 9864 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Checking PATCH 9/16: target/xtensa: use libisa for instruction decoding...
Checking PATCH 10/16: target/xtensa: tests: fix memctl SR test...
Checking PATCH 11/16: target/xtensa: drop DisasContext::litbase...
Checking PATCH 12/16: target/xtensa: add internal/noop SRs and opcodes...
Checking PATCH 13/16: target/xtensa: implement salt/saltu...
Checking PATCH 14/16: target/xtensa: implement GPIO32...
Checking PATCH 15/16: target/xtensa: implement const16...
Checking PATCH 16/16: target/xtensa: implement disassembler...
ERROR: space prohibited between function name and open parenthesis '('
#183: FILE: include/disas/bfd.h:429:
+int print_insn_xtensa (bfd_vma, disassemble_info*);
total: 1 errors, 0 warnings, 175 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
=== OUTPUT END ===
Test command exited with code: 1
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org
Hi,
This series failed build test on s390x host. Please find the details below.
Subject: [Qemu-devel] [PATCH 00/16] target/xtensa: switch to libisa
Type: series
Message-id: 1509767121-26925-1-git-send-email-jcmvbkbc@gmail.com
=== TEST SCRIPT BEGIN ===
#!/bin/bash
# Testing script will be invoked under the git checkout with
# HEAD pointing to a commit that has the patches applied on top of "base"
# branch
set -e
echo "=== ENV ==="
env
echo "=== PACKAGES ==="
rpm -qa
echo "=== TEST BEGIN ==="
CC=$HOME/bin/cc
INSTALL=$PWD/install
BUILD=$PWD/build
echo -n "Using CC: "
realpath $CC
mkdir -p $BUILD $INSTALL
SRC=$PWD
cd $BUILD
$SRC/configure --cc=$CC --prefix=$INSTALL
make -j4
# XXX: we need reliable clean up
# make check -j4 V=1
make install
=== TEST SCRIPT END ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
* [new tag] patchew/1509767121-26925-1-git-send-email-jcmvbkbc@gmail.com -> patchew/1509767121-26925-1-git-send-email-jcmvbkbc@gmail.com
- [tag update] patchew/20170920131823.16347-1-laurent@vivier.eu -> patchew/20170920131823.16347-1-laurent@vivier.eu
Switched to a new branch 'test'
ea5b32e target/xtensa: implement disassembler
1a87f2b target/xtensa: implement const16
6ded886 target/xtensa: implement GPIO32
fcb1b0e target/xtensa: implement salt/saltu
23b7c67 target/xtensa: add internal/noop SRs and opcodes
69db212 target/xtensa: drop DisasContext::litbase
45e03c8 target/xtensa: tests: fix memctl SR test
46e5cfa target/xtensa: use libisa for instruction decoding
b5800e5 target/xtensa: switch fsf to libisa
e650457 target/xtensa: switch dc233c to libisa
beca5d8 target/xtensa: switch dc232b to libisa
9f16b69 target/xtensa: update import_core.sh script for libisa
cda0610 target/xtensa: extract FPU2000 opcode translators
664244d target/xtensa: extract core opcode translators
00fd87e target/xtensa: import libisa source
a4761b6 target/xtensa: pass actual frame size to the entry helper
=== OUTPUT BEGIN ===
=== ENV ===
XDG_SESSION_ID=76808
SHELL=/bin/sh
USER=fam
PATCHEW=/home/fam/patchew/patchew-cli -s http://patchew.org --nodebug
PATH=/usr/bin:/bin
PWD=/var/tmp/patchew-tester-tmp-9_mgu2zl/src
LANG=en_US.UTF-8
HOME=/home/fam
SHLVL=2
LOGNAME=fam
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1012/bus
XDG_RUNTIME_DIR=/run/user/1012
_=/usr/bin/env
=== PACKAGES ===
gpg-pubkey-873529b8-54e386ff
xz-libs-5.2.2-2.fc24.s390x
libxshmfence-1.2-3.fc24.s390x
giflib-4.1.6-15.fc24.s390x
trousers-lib-0.3.13-6.fc24.s390x
ncurses-base-6.0-6.20160709.fc25.noarch
gmp-6.1.1-1.fc25.s390x
libidn-1.33-1.fc25.s390x
slang-2.3.0-7.fc25.s390x
pkgconfig-0.29.1-1.fc25.s390x
alsa-lib-1.1.1-2.fc25.s390x
yum-metadata-parser-1.1.4-17.fc25.s390x
python3-slip-dbus-0.6.4-4.fc25.noarch
python2-cssselect-0.9.2-1.fc25.noarch
createrepo_c-libs-0.10.0-6.fc25.s390x
initscripts-9.69-1.fc25.s390x
parted-3.2-21.fc25.s390x
flex-2.6.0-3.fc25.s390x
colord-libs-1.3.4-1.fc25.s390x
python-osbs-client-0.33-3.fc25.noarch
perl-Pod-Simple-3.35-1.fc25.noarch
python2-simplejson-3.10.0-1.fc25.s390x
brltty-5.4-2.fc25.s390x
librados2-10.2.4-2.fc25.s390x
tcp_wrappers-7.6-83.fc25.s390x
libcephfs_jni1-10.2.4-2.fc25.s390x
nettle-devel-3.3-1.fc25.s390x
bzip2-devel-1.0.6-21.fc25.s390x
libuuid-2.28.2-2.fc25.s390x
python3-dnf-1.1.10-6.fc25.noarch
texlive-kpathsea-doc-svn41139-33.fc25.1.noarch
openssh-7.4p1-4.fc25.s390x
texlive-kpathsea-bin-svn40473-33.20160520.fc25.1.s390x
texlive-graphics-svn41015-33.fc25.1.noarch
texlive-dvipdfmx-def-svn40328-33.fc25.1.noarch
texlive-mfware-svn40768-33.fc25.1.noarch
texlive-texlive-scripts-svn41433-33.fc25.1.noarch
texlive-euro-svn22191.1.1-33.fc25.1.noarch
texlive-etex-svn37057.0-33.fc25.1.noarch
texlive-iftex-svn29654.0.2-33.fc25.1.noarch
texlive-palatino-svn31835.0-33.fc25.1.noarch
texlive-texlive-docindex-svn41430-33.fc25.1.noarch
texlive-xunicode-svn30466.0.981-33.fc25.1.noarch
texlive-koma-script-svn41508-33.fc25.1.noarch
texlive-pst-grad-svn15878.1.06-33.fc25.1.noarch
texlive-pst-blur-svn15878.2.0-33.fc25.1.noarch
texlive-jknapltx-svn19440.0-33.fc25.1.noarch
texinfo-6.1-4.fc25.s390x
openssl-devel-1.0.2k-1.fc25.s390x
jansson-2.10-2.fc25.s390x
fedora-repos-25-4.noarch
perl-Errno-1.25-387.fc25.s390x
acl-2.2.52-13.fc25.s390x
systemd-pam-231-17.fc25.s390x
NetworkManager-libnm-1.4.4-5.fc25.s390x
poppler-0.45.0-5.fc25.s390x
ccache-3.3.4-1.fc25.s390x
valgrind-3.12.0-9.fc25.s390x
perl-open-1.10-387.fc25.noarch
libgcc-6.4.1-1.fc25.s390x
libsoup-2.56.1-1.fc25.s390x
libstdc++-devel-6.4.1-1.fc25.s390x
libobjc-6.4.1-1.fc25.s390x
python2-rpm-4.13.0.1-2.fc25.s390x
python2-gluster-3.10.5-1.fc25.s390x
rpm-build-4.13.0.1-2.fc25.s390x
glibc-static-2.24-10.fc25.s390x
lz4-1.8.0-1.fc25.s390x
xapian-core-libs-1.2.24-1.fc25.s390x
elfutils-libelf-devel-0.169-1.fc25.s390x
nss-softokn-3.32.0-1.2.fc25.s390x
pango-1.40.9-1.fc25.s390x
glibc-debuginfo-common-2.24-10.fc25.s390x
libaio-0.3.110-6.fc24.s390x
libfontenc-1.1.3-3.fc24.s390x
lzo-2.08-8.fc24.s390x
isl-0.14-5.fc24.s390x
libXau-1.0.8-6.fc24.s390x
linux-atm-libs-2.5.1-14.fc24.s390x
libXext-1.3.3-4.fc24.s390x
libXxf86vm-1.1.4-3.fc24.s390x
bison-3.0.4-4.fc24.s390x
perl-srpm-macros-1-20.fc25.noarch
gawk-4.1.3-8.fc25.s390x
libwayland-client-1.12.0-1.fc25.s390x
perl-Exporter-5.72-366.fc25.noarch
perl-version-0.99.17-1.fc25.s390x
fftw-libs-double-3.3.5-3.fc25.s390x
libssh2-1.8.0-1.fc25.s390x
ModemManager-glib-1.6.4-1.fc25.s390x
newt-python3-0.52.19-2.fc25.s390x
python-munch-2.0.4-3.fc25.noarch
python-bugzilla-1.2.2-4.fc25.noarch
libedit-3.1-16.20160618cvs.fc25.s390x
createrepo_c-0.10.0-6.fc25.s390x
device-mapper-multipath-libs-0.4.9-83.fc25.s390x
yum-3.4.3-510.fc25.noarch
mozjs17-17.0.0-16.fc25.s390x
libselinux-2.5-13.fc25.s390x
python2-pyparsing-2.1.10-1.fc25.noarch
cairo-gobject-1.14.8-1.fc25.s390x
xorg-x11-proto-devel-7.7-20.fc25.noarch
brlapi-0.6.5-2.fc25.s390x
librados-devel-10.2.4-2.fc25.s390x
libXinerama-devel-1.1.3-6.fc24.s390x
lua-posix-33.3.1-3.fc25.s390x
usbredir-devel-0.7.1-2.fc24.s390x
python3-dnf-plugins-core-0.1.21-5.fc25.noarch
texlive-pdftex-doc-svn41149-33.fc25.1.noarch
openssh-clients-7.4p1-4.fc25.s390x
iptables-1.6.0-3.fc25.s390x
texlive-texlive.infra-svn41280-33.fc25.1.noarch
texlive-graphics-cfg-svn40269-33.fc25.1.noarch
texlive-bibtex-svn40768-33.fc25.1.noarch
texlive-mfware-bin-svn40473-33.20160520.fc25.1.s390x
texlive-texlive-scripts-bin-svn29741.0-33.20160520.fc25.1.noarch
texlive-sauerj-svn15878.0-33.fc25.1.noarch
texlive-enctex-svn34957.0-33.fc25.1.noarch
texlive-ifetex-svn24853.1.2-33.fc25.1.noarch
texlive-ntgclass-svn15878.2.1a-33.fc25.1.noarch
texlive-tex-gyre-math-svn41264-33.fc25.1.noarch
texlive-bera-svn20031.0-33.fc25.1.noarch
texlive-ms-svn29849.0-33.fc25.1.noarch
texlive-pst-fill-svn15878.1.01-33.fc25.1.noarch
texlive-ctable-svn38672-33.fc25.1.noarch
texlive-extsizes-svn17263.1.4a-33.fc25.1.noarch
texlive-collection-latexrecommended-svn35765.0-33.20160520.fc25.1.noarch
perl-Filter-1.57-1.fc25.s390x
python2-rpm-macros-3-12.fc25.noarch
gdbm-1.13-1.fc25.s390x
libtasn1-4.12-1.fc25.s390x
fedora-release-25-2.noarch
gdb-headless-7.12.1-48.fc25.s390x
perl-macros-5.24.2-387.fc25.s390x
pcre-devel-8.41-1.fc25.s390x
libX11-1.6.5-1.fc25.s390x
coreutils-8.25-17.fc25.s390x
python2-openidc-client-0-3.20170523git77cb3ee.fc25.noarch
systemtap-client-3.1-5.fc25.s390x
firewalld-0.4.4.5-1.fc25.noarch
glibc-2.24-10.fc25.s390x
libglvnd-egl-0.2.999-24.20170818git8d4d03f.fc25.s390x
libkadm5-1.14.4-8.fc25.s390x
glusterfs-fuse-3.10.5-1.fc25.s390x
libgfortran-6.4.1-1.fc25.s390x
python3-rpm-4.13.0.1-2.fc25.s390x
glusterfs-extra-xlators-3.10.5-1.fc25.s390x
dracut-config-rescue-046-2.git20170811.fc25.s390x
python2-sphinx-theme-alabaster-0.7.9-1.fc25.noarch
elfutils-devel-0.169-1.fc25.s390x
nss-3.32.0-1.1.fc25.s390x
pango-devel-1.40.9-1.fc25.s390x
glibc-debuginfo-2.24-10.fc25.s390x
gpg-pubkey-efe550f5-5220ba41
gpg-pubkey-81b46521-55b3ca9a
filesystem-3.2-37.fc24.s390x
libffi-3.1-9.fc24.s390x
keyutils-libs-1.5.9-8.fc24.s390x
libnfnetlink-1.0.1-8.fc24.s390x
libtheora-1.1.1-14.fc24.s390x
xml-common-0.6.3-44.fc24.noarch
autoconf-2.69-22.fc24.noarch
libXt-1.1.5-3.fc24.s390x
kbd-legacy-2.0.3-3.fc24.noarch
ghostscript-fonts-5.50-35.fc24.noarch
libXevie-1.0.3-11.fc24.s390x
libcap-2.25-2.fc25.s390x
mpfr-3.1.5-1.fc25.s390x
perl-Carp-1.40-365.fc25.noarch
libmnl-1.0.4-1.fc25.s390x
perl-Unicode-EastAsianWidth-1.33-8.fc25.noarch
libwayland-cursor-1.12.0-1.fc25.s390x
python-krbV-1.0.90-12.fc25.s390x
python2-urllib3-1.15.1-3.fc25.noarch
fipscheck-1.4.1-11.fc25.s390x
libndp-1.6-1.fc25.s390x
gnupg2-2.1.13-2.fc25.s390x
libXfixes-5.0.3-1.fc25.s390x
adwaita-icon-theme-3.22.0-1.fc25.noarch
dconf-0.26.0-1.fc25.s390x
ncurses-devel-6.0-6.20160709.fc25.s390x
dejagnu-1.6-1.fc25.noarch
device-mapper-1.02.136-3.fc25.s390x
libevent-2.0.22-1.fc25.s390x
atk-devel-2.22.0-1.fc25.s390x
libev-4.24-1.fc25.s390x
xorg-x11-fonts-Type1-7.5-16.fc24.noarch
brlapi-devel-0.6.5-2.fc25.s390x
pulseaudio-libs-10.0-2.fc25.s390x
glib2-2.50.3-1.fc25.s390x
dnf-1.1.10-6.fc25.noarch
texlive-metafont-bin-svn40987-33.20160520.fc25.1.s390x
texlive-xkeyval-svn35741.2.7a-33.fc25.1.noarch
texlive-euler-svn17261.2.5-33.fc25.1.noarch
texlive-mptopdf-svn41282-33.fc25.1.noarch
texlive-wasy-svn35831.0-33.fc25.1.noarch
texlive-avantgar-svn31835.0-33.fc25.1.noarch
texlive-eurosym-svn17265.1.4_subrfix-33.fc25.1.noarch
texlive-knuth-lib-svn35820.0-33.fc25.1.noarch
texlive-parallel-svn15878.0-33.fc25.1.noarch
texlive-texlive-msg-translations-svn41431-33.fc25.1.noarch
texlive-latex-svn40218-33.fc25.1.noarch
texlive-lualatex-math-svn40621-33.fc25.1.noarch
texlive-auto-pst-pdf-svn23723.0.6-33.fc25.1.noarch
texlive-powerdot-svn38984-33.fc25.1.noarch
texlive-wasysym-svn15878.2.0-33.fc25.1.noarch
ImageMagick-libs-6.9.3.0-6.fc25.s390x
geoclue2-2.4.5-1.fc25.s390x
perl-IO-Socket-IP-0.39-1.fc25.noarch
python2-pyasn1-0.2.3-1.fc25.noarch
at-spi2-core-devel-2.22.1-1.fc25.s390x
libacl-2.2.52-13.fc25.s390x
perl-libs-5.24.2-387.fc25.s390x
mesa-libglapi-17.0.5-3.fc25.s390x
python3-rpmconf-1.0.19-1.fc25.noarch
pcre-utf32-8.41-1.fc25.s390x
libX11-common-1.6.5-1.fc25.noarch
coreutils-common-8.25-17.fc25.s390x
mesa-libEGL-17.0.5-3.fc25.s390x
systemtap-runtime-3.1-5.fc25.s390x
NetworkManager-glib-1.4.4-5.fc25.s390x
audit-2.7.7-1.fc25.s390x
glibc-all-langpacks-2.24-10.fc25.s390x
libglvnd-glx-0.2.999-24.20170818git8d4d03f.fc25.s390x
glusterfs-api-3.10.5-1.fc25.s390x
libepoxy-devel-1.4.3-1.fc25.1.s390x
gtk3-3.22.17-2.fc25.s390x
rpm-4.13.0.1-2.fc25.s390x
net-snmp-agent-libs-5.7.3-15.fc25.s390x
pcre2-devel-10.23-9.fc25.s390x
subversion-1.9.7-1.fc25.s390x
libsndfile-1.0.28-6.fc25.s390x
lasi-1.1.2-6.fc24.s390x
python2-snowballstemmer-1.2.1-1.fc25.noarch
nss-util-devel-3.32.0-1.0.fc25.s390x
vim-common-8.0.1030-1.fc25.s390x
gd-2.2.5-1.fc25.s390x
gpg-pubkey-34ec9cba-54e38751
gpg-pubkey-030d5aed-55b577f0
basesystem-11-2.fc24.noarch
libmpc-1.0.2-5.fc24.s390x
libunistring-0.9.4-3.fc24.s390x
libmodman-2.0.1-12.fc24.s390x
lsscsi-0.28-3.fc24.s390x
kbd-misc-2.0.3-3.fc24.noarch
kmod-23-1.fc25.s390x
newt-0.52.19-2.fc25.s390x
perl-Text-Unidecode-1.27-3.fc25.noarch
plymouth-core-libs-0.9.3-0.6.20160620git0e65b86c.fc25.s390x
which-2.21-1.fc25.s390x
python3-slip-0.6.4-4.fc25.noarch
python3-systemd-232-1.fc25.s390x
python-lockfile-0.11.0-4.fc25.noarch
python2-requests-2.10.0-4.fc25.noarch
libnghttp2-1.13.0-2.fc25.s390x
python-urlgrabber-3.10.1-9.fc25.noarch
iputils-20161105-1.fc25.s390x
rest-0.8.0-1.fc25.s390x
adwaita-cursor-theme-3.22.0-1.fc25.noarch
authconfig-6.2.10-14.fc25.s390x
automake-1.15-7.fc25.noarch
shared-mime-info-1.8-1.fc25.s390x
pigz-2.3.4-1.fc25.s390x
device-mapper-libs-1.02.136-3.fc25.s390x
dnsmasq-2.76-2.fc25.s390x
fedora-packager-0.6.0.1-1.fc25.noarch
libwebp-0.5.2-1.fc25.s390x
boost-system-1.60.0-10.fc25.s390x
libasyncns-0.8-10.fc24.s390x
libXau-devel-1.0.8-6.fc24.s390x
libverto-libev-0.2.6-6.fc24.s390x
python3-html5lib-0.999-9.fc25.noarch
ttmkfdir-3.0.9-48.fc24.s390x
pulseaudio-libs-glib2-10.0-2.fc25.s390x
texlive-lib-2016-33.20160520.fc25.s390x
libXi-devel-1.7.9-1.fc25.s390x
python3-distro-1.0.3-1.fc25.noarch
texlive-texlive-common-doc-svn40682-33.fc25.1.noarch
packagedb-cli-2.14.1-1.fc25.noarch
texlive-metafont-svn40793-33.fc25.1.noarch
texlive-tools-svn40934-33.fc25.1.noarch
texlive-enumitem-svn24146.3.5.2-33.fc25.1.noarch
texlive-mptopdf-bin-svn18674.0-33.20160520.fc25.1.noarch
texlive-underscore-svn18261.0-33.fc25.1.noarch
texlive-anysize-svn15878.0-33.fc25.1.noarch
texlive-euenc-svn19795.0.1h-33.fc25.1.noarch
texlive-kastrup-svn15878.0-33.fc25.1.noarch
texlive-paralist-svn39247-33.fc25.1.noarch
texlive-texlive-en-svn41185-33.fc25.1.noarch
texlive-tipa-svn29349.1.3-33.fc25.1.noarch
texlive-currfile-svn40725-33.fc25.1.noarch
texlive-pst-node-svn40743-33.fc25.1.noarch
texlive-pst-slpe-svn24391.1.31-33.fc25.1.noarch
texlive-typehtml-svn17134.0-33.fc25.1.noarch
SDL2-devel-2.0.5-3.fc25.s390x
libcroco-0.6.11-3.fc25.s390x
bluez-libs-devel-5.44-1.fc25.s390x
firewalld-filesystem-0.4.4.5-1.fc25.noarch
pcre-cpp-8.41-1.fc25.s390x
python3-firewall-0.4.4.5-1.fc25.noarch
freetype-devel-2.6.5-9.fc25.s390x
pcre-utf16-8.41-1.fc25.s390x
linux-firmware-20170605-74.git37857004.fc25.noarch
kernel-modules-4.11.10-200.fc25.s390x
systemtap-devel-3.1-5.fc25.s390x
polkit-0.113-8.fc25.s390x
perl-SelfLoader-1.23-387.fc25.noarch
libdb-utils-5.3.28-24.fc25.s390x
glibc-common-2.24-10.fc25.s390x
libglvnd-0.2.999-24.20170818git8d4d03f.fc25.s390x
webkitgtk4-2.16.6-1.fc25.s390x
rpm-build-libs-4.13.0.1-2.fc25.s390x
libglvnd-core-devel-0.2.999-24.20170818git8d4d03f.fc25.s390x
rpm-devel-4.13.0.1-2.fc25.s390x
kernel-4.12.9-200.fc25.s390x
libtool-ltdl-2.4.6-14.fc25.s390x
gts-0.7.6-29.20121130.fc24.s390x
python2-imagesize-0.7.1-2.fc25.noarch
nss-softokn-freebl-3.32.0-1.2.fc25.s390x
selinux-policy-3.13.1-225.22.fc25.noarch
kernel-devel-4.12.11-200.fc25.s390x
fontpackages-filesystem-1.44-17.fc24.noarch
groff-base-1.22.3-8.fc24.s390x
ilmbase-2.2.0-5.fc24.s390x
OpenEXR-libs-2.2.0-5.fc24.s390x
hesiod-3.2.1-6.fc24.s390x
sysfsutils-2.1.0-19.fc24.s390x
ocaml-srpm-macros-2-4.fc24.noarch
mailx-12.5-19.fc24.s390x
ncurses-libs-6.0-6.20160709.fc25.s390x
ipset-libs-6.29-1.fc25.s390x
gmp-devel-6.1.1-1.fc25.s390x
python-pip-8.1.2-2.fc25.noarch
harfbuzz-1.3.2-1.fc25.s390x
python2-iniparse-0.4-20.fc25.noarch
python3-iniparse-0.4-20.fc25.noarch
python3-kickstart-2.32-1.fc25.noarch
perl-Net-SSLeay-1.78-1.fc25.s390x
drpm-0.3.0-3.fc25.s390x
glib-networking-2.50.0-1.fc25.s390x
webkitgtk3-2.4.11-3.fc25.s390x
libXaw-1.0.13-4.fc25.s390x
xorg-x11-font-utils-7.5-32.fc25.s390x
hardlink-1.1-1.fc25.s390x
libcom_err-1.43.3-1.fc25.s390x
python2-dateutil-2.6.0-1.fc25.noarch
libXpm-3.5.12-1.fc25.s390x
poppler-data-0.4.7-6.fc25.noarch
librbd1-10.2.4-2.fc25.s390x
perl-Digest-MD5-2.55-2.fc25.s390x
wayland-protocols-devel-1.7-1.fc25.noarch
texi2html-5.0-4.fc24.noarch
libxkbcommon-0.7.1-1.fc25.s390x
libuuid-devel-2.28.2-2.fc25.s390x
libcacard-2.5.3-1.fc25.s390x
libwmf-lite-0.2.8.4-50.fc25.s390x
texlive-tetex-svn41059-33.fc25.1.noarch
texlive-thumbpdf-svn34621.3.16-33.fc25.1.noarch
texlive-carlisle-svn18258.0-33.fc25.1.noarch
texlive-makeindex-bin-svn40473-33.20160520.fc25.1.s390x
texlive-pdftex-svn41149-33.fc25.1.noarch
texlive-csquotes-svn39538-33.fc25.1.noarch
texlive-courier-svn35058.0-33.fc25.1.noarch
texlive-helvetic-svn31835.0-33.fc25.1.noarch
texlive-mfnfss-svn19410.0-33.fc25.1.noarch
texlive-sepnum-svn20186.2.0-33.fc25.1.noarch
texlive-utopia-svn15878.0-33.fc25.1.noarch
texlive-luatexbase-svn38550-33.fc25.1.noarch
texlive-pst-3d-svn17257.1.10-33.fc25.1.noarch
texlive-latex-bin-bin-svn14050.0-33.20160520.fc25.1.noarch
texlive-l3experimental-svn41163-33.fc25.1.noarch
net-tools-2.0-0.40.20160329git.fc25.s390x
perl-Pod-Perldoc-3.28-1.fc25.noarch
openssl-1.0.2k-1.fc25.s390x
man-pages-4.06-4.fc25.noarch
libxml2-2.9.4-2.fc25.s390x
python3-dateutil-2.6.0-1.fc25.noarch
perl-threads-shared-1.57-1.fc25.s390x
libnotify-0.7.7-1.fc25.s390x
unzip-6.0-32.fc25.s390x
python-beautifulsoup4-4.6.0-1.fc25.noarch
dhcp-client-4.3.5-3.fc25.s390x
python2-fedora-0.9.0-6.fc25.noarch
gdb-7.12.1-48.fc25.s390x
sqlite-libs-3.14.2-3.fc25.s390x
webkitgtk4-jsc-2.16.6-1.fc25.s390x
libgomp-6.4.1-1.fc25.s390x
p11-kit-trust-0.23.8-1.fc25.s390x
gdk-pixbuf2-devel-2.36.9-1.fc25.s390x
rpm-plugin-selinux-4.13.0.1-2.fc25.s390x
mariadb-common-10.1.25-1.fc25.s390x
dbus-devel-1.11.16-1.fc25.s390x
lz4-libs-1.8.0-1.fc25.s390x
python2-jinja2-2.8.1-1.fc25.noarch
system-python-libs-3.5.4-1.fc25.s390x
python2-rpkg-1.50-2.fc25.noarch
libsolv-0.6.29-1.fc25.s390x
gpg-pubkey-95a43f54-5284415a
dejavu-fonts-common-2.35-3.fc24.noarch
libSM-1.2.2-4.fc24.s390x
diffutils-3.3-13.fc24.s390x
libogg-1.3.2-5.fc24.s390x
hunspell-en-US-0.20140811.1-5.fc24.noarch
libdaemon-0.14-10.fc24.s390x
patch-2.7.5-3.fc24.s390x
libsysfs-2.1.0-19.fc24.s390x
procmail-3.22-39.fc24.s390x
libXdamage-1.1.4-8.fc24.s390x
libotf-0.9.13-7.fc24.s390x
urw-fonts-2.4-22.fc24.noarch
crontabs-1.11-12.20150630git.fc24.noarch
ppp-2.4.7-9.fc24.s390x
cyrus-sasl-2.1.26-26.2.fc24.s390x
zlib-devel-1.2.8-10.fc24.s390x
time-1.7-49.fc24.s390x
gpg-pubkey-fdb19c98-56fd6333
libcap-ng-0.7.8-1.fc25.s390x
binutils-2.26.1-1.fc25.s390x
lcms2-2.8-2.fc25.s390x
libcomps-0.1.7-5.fc25.s390x
perl-constant-1.33-367.fc25.noarch
perl-Data-Dumper-2.161-1.fc25.s390x
ipcalc-0.1.8-1.fc25.s390x
gmp-c++-6.1.1-1.fc25.s390x
fontconfig-2.12.1-1.fc25.s390x
enchant-1.6.0-14.fc25.s390x
pyliblzma-0.5.3-16.fc25.s390x
libsepol-devel-2.5-10.fc25.s390x
python3-ordered-set-2.0.0-4.fc25.noarch
python-ipaddress-1.0.16-3.fc25.noarch
python2-kerberos-1.2.5-1.fc25.s390x
python2-pysocks-1.5.6-5.fc25.noarch
fipscheck-lib-1.4.1-11.fc25.s390x
libatomic_ops-7.4.4-1.fc25.s390x
python2-pygpgme-0.3-18.fc25.s390x
orc-0.4.26-1.fc25.s390x
yum-utils-1.1.31-511.fc25.noarch
libXrender-0.9.10-1.fc25.s390x
libXrandr-1.5.1-1.fc25.s390x
go-srpm-macros-2-7.fc25.noarch
gnupg2-smime-2.1.13-2.fc25.s390x
guile-devel-2.0.13-1.fc25.s390x
uboot-tools-2016.09.01-2.fc25.s390x
pykickstart-2.32-1.fc25.noarch
python-bunch-1.0.1-9.fc25.noarch
perl-generators-1.10-1.fc25.noarch
perl-Mozilla-CA-20160104-3.fc25.noarch
bzip2-libs-1.0.6-21.fc25.s390x
libpng-1.6.27-1.fc25.s390x
desktop-file-utils-0.23-2.fc25.s390x
python2-cccolutils-1.4-1.fc25.s390x
python2-lxml-3.7.2-1.fc25.s390x
redhat-rpm-config-45-1.fc25.noarch
device-mapper-event-libs-1.02.136-3.fc25.s390x
lvm2-libs-2.02.167-3.fc25.s390x
libselinux-python-2.5-13.fc25.s390x
boost-thread-1.60.0-10.fc25.s390x
librbd-devel-10.2.4-2.fc25.s390x
libXcursor-devel-1.1.14-6.fc24.s390x
latex2html-2012-7.fc24.noarch
lksctp-tools-1.0.16-5.fc24.s390x
libfdt-1.4.2-1.fc25.s390x
libXft-devel-2.3.2-4.fc24.s390x
libattr-devel-2.4.47-16.fc24.s390x
libiscsi-devel-1.15.0-2.fc24.s390x
gettext-0.19.8.1-3.fc25.s390x
libjpeg-turbo-devel-1.5.1-0.fc25.s390x
pulseaudio-libs-devel-10.0-2.fc25.s390x
libmount-2.28.2-2.fc25.s390x
python3-decorator-4.0.11-1.fc25.noarch
tzdata-java-2017b-1.fc25.noarch
python-srpm-macros-3-12.fc25.noarch
libsmartcols-2.28.2-2.fc25.s390x
texlive-kpathsea-svn41139-33.fc25.1.noarch
texlive-amsmath-svn41561-33.fc25.1.noarch
texlive-thumbpdf-bin-svn6898.0-33.20160520.fc25.1.noarch
texlive-psnfss-svn33946.9.2a-33.fc25.1.noarch
texlive-subfig-svn15878.1.3-33.fc25.1.noarch
texlive-fancybox-svn18304.1.4-33.fc25.1.noarch
texlive-lua-alt-getopt-svn29349.0.7.0-33.fc25.1.noarch
texlive-natbib-svn20668.8.31b-33.fc25.1.noarch
texlive-pdftex-bin-svn40987-33.20160520.fc25.1.s390x
texlive-xdvi-svn40768-33.fc25.1.noarch
texlive-crop-svn15878.1.5-33.fc25.1.noarch
texlive-babel-english-svn30264.3.3p-33.fc25.1.noarch
texlive-cmextra-svn32831.0-33.fc25.1.noarch
texlive-fancyhdr-svn15878.3.1-33.fc25.1.noarch
texlive-luatex-svn40963-33.fc25.1.noarch
texlive-knuth-local-svn38627-33.fc25.1.noarch
texlive-mflogo-font-svn36898.1.002-33.fc25.1.noarch
texlive-parskip-svn19963.2.0-33.fc25.1.noarch
texlive-section-svn20180.0-33.fc25.1.noarch
texlive-textcase-svn15878.0-33.fc25.1.noarch
texlive-updmap-map-svn41159-33.fc25.1.noarch
texlive-attachfile-svn38830-33.fc25.1.noarch
libtiff-4.0.8-1.fc25.s390x
libdb-5.3.28-24.fc25.s390x
bind-license-9.10.5-2.P2.fc25.noarch
mesa-libGLES-17.0.5-3.fc25.s390x
python3-requests-kerberos-0.10.0-2.fc25.noarch
python3-pyOpenSSL-16.2.0-1.fc25.noarch
perl-threads-2.16-1.fc25.s390x
cryptsetup-libs-1.7.5-1.fc25.s390x
netpbm-10.79.00-1.fc25.s390x
qrencode-libs-3.4.4-1.fc25.s390x
gstreamer1-plugins-base-1.10.5-1.fc25.s390x
elfutils-default-yama-scope-0.169-1.fc25.noarch
systemd-udev-231-17.fc25.s390x
python2-koji-1.13.0-2.fc25.noarch
unbound-libs-1.6.3-1.fc25.s390x
openldap-2.4.44-11.fc25.s390x
koji-1.13.0-2.fc25.noarch
bind99-libs-9.9.10-2.P3.fc25.s390x
mesa-libGL-devel-17.0.5-3.fc25.s390x
graphite2-devel-1.3.10-1.fc25.s390x
systemtap-sdt-devel-3.1-5.fc25.s390x
iproute-tc-4.11.0-1.fc25.s390x
libarchive-3.2.2-2.fc25.s390x
publicsuffix-list-dafsa-20170424-1.fc25.noarch
expat-2.2.3-1.fc25.s390x
p11-kit-0.23.8-1.fc25.s390x
kernel-core-4.12.9-200.fc25.s390x
emacs-filesystem-25.2-3.fc25.noarch
ca-certificates-2017.2.16-1.0.fc25.noarch
librsvg2-2.40.18-1.fc25.s390x
gtk-update-icon-cache-3.22.17-2.fc25.s390x
libidn2-2.0.4-1.fc25.s390x
rpm-libs-4.13.0.1-2.fc25.s390x
mariadb-libs-10.1.25-1.fc25.s390x
java-1.8.0-openjdk-headless-1.8.0.144-5.b01.fc25.s390x
gcc-objc-6.4.1-1.fc25.s390x
p11-kit-devel-0.23.8-1.fc25.s390x
ethtool-4.11-1.fc25.s390x
python2-sssdconfig-1.15.3-1.fc25.noarch
xorg-x11-fonts-ISO8859-1-100dpi-7.5-16.fc24.noarch
lato-fonts-2.015-2.fc24.noarch
python-sphinx-locale-1.5.2-2.fc25.noarch
dpkg-1.17.27-1.fc25.s390x
gnutls-3.5.15-1.fc25.s390x
nss-softokn-freebl-devel-3.32.0-1.2.fc25.s390x
vim-filesystem-8.0.1030-1.fc25.s390x
gnutls-devel-3.5.15-1.fc25.s390x
kernel-headers-4.12.11-200.fc25.s390x
texlive-luaotfload-svn40902-33.fc25.1.noarch
texlive-unicode-math-svn38462-33.fc25.1.noarch
texlive-fancyvrb-svn18492.2.8-33.fc25.1.noarch
texlive-pst-pdf-bin-svn7838.0-33.20160520.fc25.1.noarch
texlive-amscls-svn36804.0-33.fc25.1.noarch
texlive-ltxmisc-svn21927.0-33.fc25.1.noarch
texlive-breqn-svn38099.0.98d-33.fc25.1.noarch
texlive-xetex-def-svn40327-33.fc25.1.noarch
openssh-server-7.4p1-4.fc25.s390x
sendmail-8.15.2-8.fc25.s390x
tzdata-2017b-1.fc25.noarch
hunspell-1.4.1-2.fc25.s390x
gpg-pubkey-8e1431d5-53bcbac7
zlib-1.2.8-10.fc24.s390x
sed-4.2.2-15.fc24.s390x
psmisc-22.21-8.fc24.s390x
gpm-libs-1.20.7-9.fc24.s390x
zip-3.0-16.fc24.s390x
libyubikey-1.13-2.fc24.s390x
sg3_utils-libs-1.41-3.fc24.s390x
polkit-pkla-compat-0.1-7.fc24.s390x
passwd-0.79-8.fc24.s390x
trousers-0.3.13-6.fc24.s390x
grubby-8.40-3.fc24.s390x
rootfiles-8.1-19.fc24.noarch
nettle-3.3-1.fc25.s390x
libksba-1.3.5-1.fc25.s390x
perl-Text-ParseWords-3.30-365.fc25.noarch
perl-PathTools-3.63-366.fc25.s390x
perl-File-Temp-0.23.04-365.fc25.noarch
fuse-libs-2.9.7-1.fc25.s390x
perl-Pod-Escapes-1.07-365.fc25.noarch
perl-Term-ANSIColor-4.05-2.fc25.noarch
perl-URI-1.71-5.fc25.noarch
libXfont-1.5.2-1.fc25.s390x
python-six-1.10.0-3.fc25.noarch
dbus-glib-0.108-1.fc25.s390x
gobject-introspection-1.50.0-1.fc25.s390x
libpwquality-1.3.0-6.fc25.s390x
python-gobject-base-3.22.0-1.fc25.s390x
python-html5lib-0.999-9.fc25.noarch
python3-dbus-1.2.4-2.fc25.s390x
python3-chardet-2.3.0-1.fc25.noarch
python3-urllib3-1.15.1-3.fc25.noarch
python-offtrac-0.1.0-7.fc25.noarch
python2-cryptography-1.5.3-3.fc25.s390x
python2-requests-kerberos-0.10.0-2.fc25.noarch
libserf-1.3.9-1.fc25.s390x
libdatrie-0.2.9-3.fc25.s390x
s390utils-base-1.36.0-1.fc25.s390x
kpartx-0.4.9-83.fc25.s390x
s390utils-cpuplugd-1.36.0-1.fc25.s390x
s390utils-osasnmpd-1.36.0-1.fc25.s390x
python-dnf-plugins-extras-common-0.0.12-4.fc25.noarch
fpc-srpm-macros-1.0-1.fc25.noarch
libuser-0.62-4.fc25.s390x
man-db-2.7.5-3.fc25.s390x
python-systemd-doc-232-1.fc25.s390x
bodhi-client-0.9.12.2-6.fc25.noarch
cairo-1.14.8-1.fc25.s390x
cracklib-dicts-2.9.6-4.fc25.s390x
libselinux-python3-2.5-13.fc25.s390x
python2-enchant-1.6.8-1.fc25.noarch
boost-iostreams-1.60.0-10.fc25.s390x
userspace-rcu-0.9.2-2.fc25.s390x
libXext-devel-1.3.3-4.fc24.s390x
libXrandr-devel-1.5.1-1.fc25.s390x
python3-lxml-3.7.2-1.fc25.s390x
libiscsi-1.15.0-2.fc24.s390x
fontconfig-devel-2.12.1-1.fc25.s390x
libfdt-devel-1.4.2-1.fc25.s390x
ceph-devel-compat-10.2.4-2.fc25.s390x
zlib-static-1.2.8-10.fc24.s390x
chrpath-0.16-3.fc24.s390x
info-6.1-4.fc25.s390x
iptables-libs-1.6.0-3.fc25.s390x
libfdisk-2.28.2-2.fc25.s390x
dnf-plugins-core-0.1.21-5.fc25.noarch
perl-Storable-2.56-368.fc25.s390x
python2-decorator-4.0.11-1.fc25.noarch
libnetfilter_conntrack-1.0.6-2.fc25.s390x
texlive-texlive.infra-bin-svn40312-33.20160520.fc25.1.s390x
texlive-ifluatex-svn41346-33.fc25.1.noarch
texlive-fp-svn15878.0-33.fc25.1.noarch
texlive-latex-fonts-svn28888.0-33.fc25.1.noarch
texlive-bibtex-bin-svn40473-33.20160520.fc25.1.s390x
texlive-glyphlist-svn28576.0-33.fc25.1.noarch
texlive-marvosym-svn29349.2.2a-33.fc25.1.noarch
texlive-tex-bin-svn40987-33.20160520.fc25.1.s390x
texlive-texconfig-svn40768-33.fc25.1.noarch
texlive-wasy2-ps-svn35830.0-33.fc25.1.noarch
texlive-psfrag-svn15878.3.04-33.fc25.1.noarch
texlive-charter-svn15878.0-33.fc25.1.noarch
texlive-ec-svn25033.1.0-33.fc25.1.noarch
texlive-lineno-svn21442.4.41-33.fc25.1.noarch
texlive-hyphen-base-svn41138-33.fc25.1.noarch
texlive-manfnt-font-svn35799.0-33.fc25.1.noarch
texlive-ncntrsbk-svn31835.0-33.fc25.1.noarch
texlive-pst-math-svn34786.0.63-33.fc25.1.noarch
texlive-symbol-svn31835.0-33.fc25.1.noarch
texlive-environ-svn33821.0.3-33.fc25.1.noarch
texlive-algorithms-svn38085.0.1-33.fc25.1.noarch
python3-hawkey-0.6.4-3.fc25.s390x
freetype-2.6.5-9.fc25.s390x
mesa-libwayland-egl-17.0.5-3.fc25.s390x
libicu-57.1-5.fc25.s390x
libnl3-cli-3.2.29-3.fc25.s390x
cups-libs-2.2.0-9.fc25.s390x
bind-libs-lite-9.10.5-2.P2.fc25.s390x
python3-kerberos-1.2.5-1.fc25.s390x
python3-cryptography-1.5.3-3.fc25.s390x
perl-IO-1.36-387.fc25.s390x
dhcp-libs-4.3.5-3.fc25.s390x
rsync-3.1.2-4.fc25.s390x
make-4.1-6.fc25.s390x
quota-4.03-8.fc25.s390x
libX11-devel-1.6.5-1.fc25.s390x
ghostscript-9.20-9.fc25.s390x
rpcbind-0.2.4-6.rc2.fc25.s390x
pyOpenSSL-16.2.0-1.fc25.noarch
python3-pycurl-7.43.0-6.fc25.s390x
bind99-license-9.9.10-2.P3.fc25.noarch
python-firewall-0.4.4.5-1.fc25.noarch
netpbm-progs-10.79.00-1.fc25.s390x
wget-1.18-3.fc25.s390x
libsemanage-2.5-9.fc25.s390x
telnet-0.17-68.fc25.s390x
gdk-pixbuf2-2.36.9-1.fc25.s390x
dbus-libs-1.11.16-1.fc25.s390x
glusterfs-client-xlators-3.10.5-1.fc25.s390x
libepoxy-1.4.3-1.fc25.1.s390x
dracut-046-2.git20170811.fc25.s390x
net-snmp-libs-5.7.3-15.fc25.s390x
libgo-devel-6.4.1-1.fc25.s390x
libglvnd-opengl-0.2.999-24.20170818git8d4d03f.fc25.s390x
sqlite-devel-3.14.2-3.fc25.s390x
cpp-6.4.1-1.fc25.s390x
git-2.9.5-1.fc25.s390x
pcre2-10.23-9.fc25.s390x
python2-GitPython-2.1.5-1.fc25.noarch
glusterfs-devel-3.10.5-1.fc25.s390x
net-snmp-5.7.3-15.fc25.s390x
rpm-plugin-systemd-inhibit-4.13.0.1-2.fc25.s390x
emacs-25.2-3.fc25.s390x
libstdc++-static-6.4.1-1.fc25.s390x
expat-devel-2.2.3-1.fc25.s390x
perl-Time-HiRes-1.9744-1.fc25.s390x
fontawesome-fonts-4.7.0-1.fc25.noarch
python-markupsafe-0.23-10.fc25.s390x
pytz-2016.6.1-1.fc25.noarch
python2-sphinx-1.5.2-2.fc25.noarch
nss-util-3.32.0-1.0.fc25.s390x
nss-sysinit-3.32.0-1.1.fc25.s390x
python3-3.5.4-1.fc25.s390x
selinux-policy-targeted-3.13.1-225.22.fc25.noarch
vim-minimal-8.0.1030-1.fc25.s390x
texlive-ifplatform-svn21156.0.4-33.fc25.1.noarch
texlive-eso-pic-svn37925.2.0g-33.fc25.1.noarch
texlive-xcolor-svn41044-33.fc25.1.noarch
texlive-pst-eps-svn15878.1.0-33.fc25.1.noarch
texlive-pst-text-svn15878.1.00-33.fc25.1.noarch
texlive-rotating-svn16832.2.16b-33.fc25.1.noarch
texlive-pdfpages-svn40638-33.fc25.1.noarch
texlive-cm-super-svn15878.0-33.fc25.1.noarch
texlive-xetex-svn41438-33.fc25.1.noarch
dnf-yum-1.1.10-6.fc25.noarch
libseccomp-devel-2.3.2-1.fc25.s390x
gpgme-1.8.0-10.fc25.s390x
apr-util-1.5.4-3.fc24.s390x
jbigkit-libs-2.1-5.fc24.s390x
pixman-0.34.0-2.fc24.s390x
dwz-0.12-2.fc24.s390x
expect-5.45-22.fc24.s390x
libsigsegv-2.10-10.fc24.s390x
fakeroot-libs-1.20.2-4.fc24.s390x
m17n-lib-1.7.0-5.fc24.s390x
libverto-0.2.6-6.fc24.s390x
libXmu-1.1.2-4.fc24.s390x
libXcursor-1.1.14-6.fc24.s390x
python-kitchen-1.2.4-2.fc24.noarch
fakeroot-1.20.2-4.fc24.s390x
blktrace-1.1.0-3.fc24.s390x
usermode-1.111-8.fc24.s390x
kbd-2.0.3-3.fc24.s390x
libaio-devel-0.3.110-6.fc24.s390x
web-assets-filesystem-5-4.fc24.noarch
libgpg-error-1.24-1.fc25.s390x
findutils-4.6.0-8.fc25.s390x
libassuan-2.4.3-1.fc25.s390x
libusbx-1.0.21-1.fc25.s390x
libxslt-1.1.28-13.fc25.s390x
libmetalink-0.1.3-1.fc25.s390x
perl-MIME-Base64-3.15-365.fc25.s390x
ncurses-6.0-6.20160709.fc25.s390x
libwayland-server-1.12.0-1.fc25.s390x
perl-Fedora-VSP-0.001-4.fc25.noarch
perl-libintl-perl-1.26-1.fc25.s390x
shadow-utils-4.2.1-11.fc25.s390x
atk-2.22.0-1.fc25.s390x
pam-1.3.0-1.fc25.s390x
harfbuzz-icu-1.3.2-1.fc25.s390x
libsecret-0.18.5-2.fc25.s390x
s390utils-iucvterm-1.36.0-1.fc25.s390x
python3-requests-2.10.0-4.fc25.noarch
pyusb-1.0.0-2.fc25.noarch
python-enum34-1.0.4-6.fc25.noarch
pyxattr-0.5.3-8.fc25.s390x
libbabeltrace-1.4.0-3.fc25.s390x
libthai-0.1.25-1.fc25.s390x
deltarpm-3.6-17.fc25.s390x
s390utils-mon_statd-1.36.0-1.fc25.s390x
device-mapper-multipath-0.4.9-83.fc25.s390x
python3-pygpgme-0.3-18.fc25.s390x
libreport-filesystem-2.8.0-1.fc25.s390x
ghc-srpm-macros-1.4.2-4.fc25.noarch
rpmdevtools-8.9-1.fc25.noarch
python-dnf-plugins-extras-migrate-0.0.12-4.fc25.noarch
perl-IO-Socket-SSL-2.038-1.fc25.noarch
perl-File-ShareDir-1.102-7.fc25.noarch
tcl-8.6.6-1.fc25.s390x
bzip2-1.0.6-21.fc25.s390x
libss-1.43.3-1.fc25.s390x
libselinux-utils-2.5-13.fc25.s390x
python3-enchant-1.6.8-1.fc25.noarch
python2-dockerfile-parse-0.0.5-7.fc25.noarch
systemd-bootchart-231-2.fc25.s390x
e2fsprogs-1.43.3-1.fc25.s390x
libpng-devel-1.6.27-1.fc25.s390x
perl-XML-Parser-2.44-5.fc25.s390x
lttng-ust-2.8.1-2.fc25.s390x
libXfixes-devel-5.0.3-1.fc25.s390x
libXcomposite-devel-0.4.4-8.fc24.s390x
python3-javapackages-4.7.0-6.1.fc25.noarch
libcephfs_jni-devel-10.2.4-2.fc25.s390x
keyutils-libs-devel-1.5.9-8.fc24.s390x
harfbuzz-devel-1.3.2-1.fc25.s390x
libidn-devel-1.33-1.fc25.s390x
libnfs-1.9.8-2.fc24.s390x
libssh2-devel-1.8.0-1.fc25.s390x
qemu-sanity-check-nodeps-1.1.5-5.fc24.s390x
alsa-lib-devel-1.1.1-2.fc25.s390x
libpsl-0.17.0-1.fc25.s390x
libseccomp-2.3.2-1.fc25.s390x
json-glib-1.2.6-1.fc25.s390x
python2-dnf-1.1.10-6.fc25.noarch
texlive-tetex-bin-svn36770.0-33.20160520.fc25.1.noarch
texlive-amsfonts-svn29208.3.04-33.fc25.1.noarch
texlive-babel-svn40706-33.fc25.1.noarch
texlive-colortbl-svn29803.v1.0a-33.fc25.1.noarch
texlive-babelbib-svn25245.1.31-33.fc25.1.noarch
texlive-footmisc-svn23330.5.5b-33.fc25.1.noarch
texlive-makeindex-svn40768-33.fc25.1.noarch
texlive-plain-svn40274-33.fc25.1.noarch
texlive-texconfig-bin-svn29741.0-33.20160520.fc25.1.noarch
texlive-zapfding-svn31835.0-33.fc25.1.noarch
texlive-microtype-svn41127-33.fc25.1.noarch
texlive-bookman-svn31835.0-33.fc25.1.noarch
texlive-dvisvgm-def-svn41011-33.fc25.1.noarch
texlive-finstrut-svn21719.0.5-33.fc25.1.noarch
texlive-hyph-utf8-svn41189-33.fc25.1.noarch
texlive-lualibs-svn40370-33.fc25.1.noarch
python2-hawkey-0.6.4-3.fc25.s390x
elfutils-libelf-0.169-1.fc25.s390x
libnl3-3.2.29-3.fc25.s390x
gstreamer1-1.10.5-1.fc25.s390x
polkit-libs-0.113-8.fc25.s390x
libtirpc-1.0.2-0.fc25.s390x
libteam-1.27-1.fc25.s390x
python3-pyasn1-0.2.3-1.fc25.noarch
perl-File-Path-2.12-366.fc25.noarch
mesa-libwayland-egl-devel-17.0.5-3.fc25.s390x
libacl-devel-2.2.52-13.fc25.s390x
lua-libs-5.3.4-3.fc25.s390x
quota-nls-4.03-8.fc25.noarch
ghostscript-x11-9.20-9.fc25.s390x
systemd-231-17.fc25.s390x
dhcp-common-4.3.5-3.fc25.noarch
vte291-devel-0.46.2-1.fc25.s390x
python-devel-2.7.13-2.fc25.s390x
elfutils-0.169-1.fc25.s390x
lua-5.3.4-3.fc25.s390x
python3-beautifulsoup4-4.6.0-1.fc25.noarch
libmicrohttpd-0.9.55-1.fc25.s390x
screen-4.6.1-1.fc25.s390x
strace-4.18-1.fc25.s390x
libstdc++-6.4.1-1.fc25.s390x
glusterfs-3.10.5-1.fc25.s390x
file-5.29-9.fc25.s390x
libgo-6.4.1-1.fc25.s390x
tar-1.29-4.fc25.s390x
subversion-libs-1.9.7-1.fc25.s390x
libglvnd-gles-0.2.999-24.20170818git8d4d03f.fc25.s390x
gdk-pixbuf2-modules-2.36.9-1.fc25.s390x
gcc-6.4.1-1.fc25.s390x
curl-7.51.0-9.fc25.s390x
pcre2-utf16-10.23-9.fc25.s390x
mariadb-config-10.1.25-1.fc25.s390x
distribution-gpg-keys-1.14-1.fc25.noarch
libcurl-devel-7.51.0-9.fc25.s390x
gtk3-devel-3.22.17-2.fc25.s390x
krb5-devel-1.14.4-8.fc25.s390x
wpa_supplicant-2.6-3.fc25.s390x
fontawesome-fonts-web-4.7.0-1.fc25.noarch
python2-pygments-2.2.0-7.fc25.noarch
python2-babel-2.3.4-2.fc25.noarch
doxygen-1.8.13-9.fc25.s390x
nspr-devel-4.16.0-1.fc25.s390x
kernel-core-4.12.11-200.fc25.s390x
rpmlint-1.10-3.fc25.noarch
vim-enhanced-8.0.1030-1.fc25.s390x
openjpeg2-2.2.0-3.fc25.s390x
texlive-mparhack-svn15878.1.4-33.fc25.1.noarch
texlive-pspicture-svn15878.0-33.fc25.1.noarch
texlive-soul-svn15878.2.4-33.fc25.1.noarch
texlive-trimspaces-svn15878.1.1-33.fc25.1.noarch
texlive-varwidth-svn24104.0.92-33.fc25.1.noarch
texlive-geometry-svn19716.5.6-33.fc25.1.noarch
texlive-memoir-svn41203-33.fc25.1.noarch
texlive-pgf-svn40966-33.fc25.1.noarch
texlive-pst-coil-svn37377.1.07-33.fc25.1.noarch
texlive-pst-plot-svn41242-33.fc25.1.noarch
texlive-latex-bin-svn41438-33.fc25.1.noarch
texlive-ucs-svn35853.2.2-33.fc25.1.noarch
texlive-ae-svn15878.1.4-33.fc25.1.noarch
texlive-xetex-bin-svn41091-33.20160520.fc25.1.s390x
fedora-upgrade-26.1-1.fc25.noarch
perl-Thread-Queue-3.12-1.fc25.noarch
cdparanoia-libs-10.2-21.fc24.s390x
ustr-1.0.4-21.fc24.s390x
libusb-0.1.5-7.fc24.s390x
readline-devel-6.3-8.fc24.s390x
chkconfig-1.8-1.fc25.s390x
avahi-libs-0.6.32-4.fc25.s390x
perl-Unicode-Normalize-1.25-365.fc25.s390x
perl-libnet-3.10-1.fc25.noarch
perl-podlators-4.09-1.fc25.noarch
dbus-python-1.2.4-2.fc25.s390x
libgnome-keyring-3.12.0-7.fc25.s390x
python-backports-1.0-8.fc25.s390x
python-pycparser-2.14-7.fc25.noarch
plymouth-scripts-0.9.3-0.6.20160620git0e65b86c.fc25.s390x
cronie-1.5.1-2.fc25.s390x
python2-librepo-1.7.18-3.fc25.s390x
libXv-1.0.11-1.fc25.s390x
python2-ndg_httpsclient-0.4.0-4.fc25.noarch
btrfs-progs-4.6.1-1.fc25.s390x
perl-Encode-2.88-5.fc25.s390x
cracklib-2.9.6-4.fc25.s390x
python3-dnf-plugin-system-upgrade-0.7.1-4.fc25.noarch
boost-random-1.60.0-10.fc25.s390x
libref_array-0.1.5-29.fc25.s390x
libXrender-devel-0.9.10-1.fc25.s390x
javapackages-tools-4.7.0-6.1.fc25.noarch
keyutils-1.5.9-8.fc24.s390x
libcom_err-devel-1.43.3-1.fc25.s390x
lzo-minilzo-2.08-8.fc24.s390x
libusbx-devel-1.0.21-1.fc25.s390x
virglrenderer-devel-0.5.0-1.20160411git61846f92f.fc25.s390x
acpica-tools-20160831-1.fc25.s390x
grep-2.27-2.fc25.s390x
dnf-conf-1.1.10-6.fc25.noarch
crypto-policies-20160921-4.gitf3018dd.fc25.noarch
libnfsidmap-0.27-1.fc25.s390x
SDL2-2.0.5-3.fc25.s390x
texlive-etex-pkg-svn39355-33.fc25.1.noarch
texlive-multido-svn18302.1.42-33.fc25.1.noarch
texlive-gsftopk-svn40768-33.fc25.1.noarch
texlive-pst-ovl-svn40873-33.fc25.1.noarch
texlive-ltabptch-svn17533.1.74d-33.fc25.1.noarch
texlive-cite-svn36428.5.5-33.fc25.1.noarch
texlive-fpl-svn15878.1.002-33.fc25.1.noarch
texlive-mathpazo-svn15878.1.003-33.fc25.1.noarch
texlive-rcs-svn15878.0-33.fc25.1.noarch
texlive-type1cm-svn21820.0-33.fc25.1.noarch
texlive-l3kernel-svn41246-33.fc25.1.noarch
texlive-hyperref-svn41396-33.fc25.1.noarch
texlive-pst-tree-svn24142.1.12-33.fc25.1.noarch
texlive-sansmathaccent-svn30187.0-33.fc25.1.noarch
texlive-dvipdfmx-bin-svn40273-33.20160520.fc25.1.s390x
texlive-zapfchan-svn31835.0-33.fc25.1.noarch
glib2-static-2.50.3-1.fc25.s390x
bash-completion-2.5-1.fc25.noarch
hyphen-2.8.8-4.fc24.s390x
python3-idna-2.5-1.fc25.noarch
less-481-7.fc25.s390x
rpmconf-base-1.0.19-1.fc25.noarch
gtk2-2.24.31-2.fc25.s390x
mesa-libgbm-17.0.5-3.fc25.s390x
nfs-utils-2.1.1-5.rc4.fc25.s390x
mc-4.8.19-5.fc25.s390x
pcre-static-8.41-1.fc25.s390x
bind-libs-9.10.5-2.P2.fc25.s390x
libproxy-0.4.15-2.fc25.s390x
file-libs-5.29-9.fc25.s390x
glibc-devel-2.24-10.fc25.s390x
glusterfs-server-3.10.5-1.fc25.s390x
git-core-doc-2.9.5-1.fc25.s390x
python2-smmap-2.0.3-1.fc25.noarch
glusterfs-api-devel-3.10.5-1.fc25.s390x
gcc-gdb-plugin-6.4.1-1.fc25.s390x
python3-magic-5.29-9.fc25.noarch
GeoIP-GeoLite-data-2017.07-1.fc25.noarch
python2-funcsigs-1.0.2-2.fc25.noarch
dos2unix-7.3.4-1.fc25.s390x
gnutls-c++-3.5.15-1.fc25.s390x
nss-tools-3.32.0-1.1.fc25.s390x
gpg-pubkey-a29cb19c-53bcbba6
m4-1.4.17-9.fc24.s390x
liblockfile-1.09-4.fc24.s390x
sg3_utils-1.41-3.fc24.s390x
libXinerama-1.1.3-6.fc24.s390x
libXft-2.3.2-4.fc24.s390x
tcp_wrappers-libs-7.6-83.fc25.s390x
perl-Text-Tabs+Wrap-2013.0523-365.fc25.noarch
perl-Error-0.17024-7.fc25.noarch
perl-Term-Cap-1.17-365.fc25.noarch
perl-Pod-Usage-1.69-1.fc25.noarch
device-mapper-persistent-data-0.6.3-1.fc25.s390x
python3-six-1.10.0-3.fc25.noarch
python3-pysocks-1.5.6-5.fc25.noarch
python-chardet-2.3.0-1.fc25.noarch
python2-cffi-1.7.0-2.fc25.s390x
gc-devel-7.4.4-1.fc25.s390x
plymouth-0.9.3-0.6.20160620git0e65b86c.fc25.s390x
ebtables-2.0.10-21.fc25.s390x
python3-librepo-1.7.18-3.fc25.s390x
at-spi2-atk-2.22.0-1.fc25.s390x
avahi-autoipd-0.6.32-4.fc25.s390x
pyparsing-2.1.10-1.fc25.noarch
python3-pyparsing-2.1.10-1.fc25.noarch
libcollection-0.7.0-29.fc25.s390x
libcephfs-devel-10.2.4-2.fc25.s390x
libXdamage-devel-1.1.4-8.fc24.s390x
libverto-devel-0.2.6-6.fc24.s390x
snappy-1.1.3-2.fc24.s390x
cairo-gobject-devel-1.14.8-1.fc25.s390x
cyrus-sasl-devel-2.1.26-26.2.fc24.s390x
libXi-1.7.9-1.fc25.s390x
texlive-base-2016-33.20160520.fc25.noarch
texlive-booktabs-svn40846-33.fc25.1.noarch
texlive-lm-svn28119.2.004-33.fc25.1.noarch
texlive-gsftopk-bin-svn40473-33.20160520.fc25.1.s390x
texlive-tex-svn40793-33.fc25.1.noarch
texlive-fancyref-svn15878.0.9c-33.fc25.1.noarch
texlive-chngcntr-svn17157.1.0a-33.fc25.1.noarch
texlive-fix2col-svn38770-33.fc25.1.noarch
texlive-marginnote-svn41382-33.fc25.1.noarch
texlive-pxfonts-svn15878.0-33.fc25.1.noarch
texlive-txfonts-svn15878.0-33.fc25.1.noarch
texlive-l3packages-svn41246-33.fc25.1.noarch
texlive-oberdiek-svn41346-33.fc25.1.noarch
texlive-pst-tools-svn34067.0.05-33.fc25.1.noarch
texlive-tex-gyre-svn18651.2.004-33.fc25.1.noarch
texlive-dvipdfmx-svn41149-33.fc25.1.noarch
texlive-collection-fontsrecommended-svn35830.0-33.20160520.fc25.1.noarch
libcacard-devel-2.5.3-1.fc25.s390x
ykpers-1.18.0-2.fc25.s390x
python2-idna-2.5-1.fc25.noarch
policycoreutils-2.5-20.fc25.s390x
libgcrypt-1.7.8-1.fc25.s390x
pcre-8.41-1.fc25.s390x
GeoIP-1.6.11-1.fc25.s390x
ghostscript-core-9.20-9.fc25.s390x
python3-cffi-1.7.0-2.fc25.s390x
json-c-0.12.1-2.fc25.s390x
vte291-0.46.2-1.fc25.s390x
gssproxy-0.7.0-9.fc25.s390x
systemtap-3.1-5.fc25.s390x
mesa-libgbm-devel-17.0.5-3.fc25.s390x
libgusb-0.2.10-1.fc25.s390x
kernel-modules-4.12.9-200.fc25.s390x
sqlite-3.14.2-3.fc25.s390x
perl-Git-2.9.5-1.fc25.noarch
python2-gitdb-2.0.2-1.fc25.noarch
libglvnd-devel-0.2.999-24.20170818git8d4d03f.fc25.s390x
gcc-c++-6.4.1-1.fc25.s390x
python-magic-5.29-9.fc25.noarch
kernel-devel-4.12.9-200.fc25.s390x
python2-mock-2.0.0-2.fc25.noarch
nspr-4.16.0-1.fc25.s390x
python3-libs-3.5.4-1.fc25.s390x
system-python-3.5.4-1.fc25.s390x
python-async-0.6.1-9.fc22.s390x
dejavu-sans-mono-fonts-2.35-3.fc24.noarch
popt-1.16-7.fc24.s390x
cyrus-sasl-lib-2.1.26-26.2.fc24.s390x
xz-5.2.2-2.fc24.s390x
libpipeline-1.4.1-2.fc24.s390x
pinentry-0.9.7-2.fc24.s390x
pth-2.0.7-27.fc24.s390x
libsepol-2.5-10.fc25.s390x
libxcb-1.12-1.fc25.s390x
perl-Getopt-Long-2.49.1-1.fc25.noarch
avahi-glib-0.6.32-4.fc25.s390x
python3-pip-8.1.2-2.fc25.noarch
python3-libcomps-0.1.7-5.fc25.s390x
python-slip-0.6.4-4.fc25.noarch
python2-libcomps-0.1.7-5.fc25.s390x
gc-7.4.4-1.fc25.s390x
s390utils-cmsfs-1.36.0-1.fc25.s390x
newt-python-0.52.19-2.fc25.s390x
qt5-srpm-macros-5.7.1-1.fc25.noarch
device-mapper-event-1.02.136-3.fc25.s390x
perl-Class-Inspector-1.31-2.fc25.noarch
libbasicobjects-0.1.1-29.fc25.s390x
libradosstriper1-10.2.4-2.fc25.s390x
libXxf86vm-devel-1.1.4-3.fc24.s390x
zziplib-0.13.62-7.fc24.s390x
libpaper-1.1.24-12.fc24.s390x
libini_config-1.3.0-29.fc25.s390x
snappy-devel-1.1.3-2.fc24.s390x
libcap-ng-devel-0.7.8-1.fc25.s390x
libxkbcommon-devel-0.7.1-1.fc25.s390x
openssl-libs-1.0.2k-1.fc25.s390x
util-linux-2.28.2-2.fc25.s390x
texlive-etoolbox-svn38031.2.2a-33.fc25.1.noarch
texlive-dvips-svn41149-33.fc25.1.noarch
texlive-latexconfig-svn40274-33.fc25.1.noarch
texlive-tex-ini-files-svn40533-33.fc25.1.noarch
texlive-qstest-svn15878.0-33.fc25.1.noarch
texlive-cmap-svn41168-33.fc25.1.noarch
texlive-luatex-bin-svn41091-33.20160520.fc25.1.s390x
texlive-mflogo-svn38628-33.fc25.1.noarch
texlive-sansmath-svn17997.1.1-33.fc25.1.noarch
texlive-unicode-data-svn39808-33.fc25.1.noarch
texlive-luaotfload-bin-svn34647.0-33.20160520.fc25.1.noarch
texlive-listings-svn37534.1.6-33.fc25.1.noarch
texlive-pstricks-svn41321-33.fc25.1.noarch
texlive-metalogo-svn18611.0.12-33.fc25.1.noarch
texlive-collection-latex-svn41011-33.20160520.fc25.1.noarch
python2-dnf-plugins-core-0.1.21-5.fc25.noarch
xkeyboard-config-2.20-2.fc25.noarch
perl-Test-Harness-3.39-1.fc25.noarch
systemd-libs-231-17.fc25.s390x
python3-pycparser-2.14-7.fc25.noarch
kernel-devel-4.11.10-200.fc25.s390x
gsm-1.0.17-1.fc25.s390x
python-2.7.13-2.fc25.s390x
kernel-4.11.10-200.fc25.s390x
rpmconf-1.0.19-1.fc25.noarch
teamd-1.27-1.fc25.s390x
jasper-libs-1.900.13-4.fc25.s390x
glusterfs-libs-3.10.5-1.fc25.s390x
libcrypt-nss-2.24-10.fc25.s390x
emacs-common-25.2-3.fc25.s390x
libcurl-7.51.0-9.fc25.s390x
java-1.8.0-openjdk-1.8.0.144-5.b01.fc25.s390x
gcc-go-6.4.1-1.fc25.s390x
perl-XML-XPath-1.39-2.fc25.noarch
python2-sphinx_rtd_theme-0.1.9-2.fc24.noarch
libxml2-devel-2.9.4-2.fc25.s390x
nss-softokn-devel-3.32.0-1.2.fc25.s390x
nss-devel-3.32.0-1.1.fc25.s390x
libattr-2.4.47-16.fc24.s390x
libvisual-0.4.0-20.fc24.s390x
libpcap-1.7.4-2.fc24.s390x
libutempter-1.1.6-8.fc24.s390x
libgudev-230-3.fc24.s390x
popt-devel-1.16-7.fc24.s390x
hicolor-icon-theme-0.15-3.fc24.noarch
setup-2.10.4-1.fc25.noarch
bash-4.3.43-4.fc25.s390x
libjpeg-turbo-1.5.1-0.fc25.s390x
perl-Socket-2.024-1.fc25.s390x
perl-HTTP-Tiny-0.070-1.fc25.noarch
ipset-6.29-1.fc25.s390x
python2-setuptools-25.1.1-1.fc25.noarch
gsettings-desktop-schemas-3.22.0-1.fc25.s390x
python3-setuptools-25.1.1-1.fc25.noarch
python-slip-dbus-0.6.4-4.fc25.noarch
python2-ply-3.8-2.fc25.noarch
dtc-1.4.2-1.fc25.s390x
guile-2.0.13-1.fc25.s390x
cronie-anacron-1.5.1-2.fc25.s390x
libXtst-1.2.3-1.fc25.s390x
iso-codes-3.70-1.fc25.noarch
s390utils-1.36.0-1.fc25.s390x
python-backports-ssl_match_hostname-3.5.0.1-3.fc25.noarch
fedora-cert-0.6.0.1-1.fc25.noarch
dnf-plugin-system-upgrade-0.7.1-4.fc25.noarch
lvm2-2.02.167-3.fc25.s390x
libselinux-devel-2.5-13.fc25.s390x
perl-Time-Local-1.250-1.fc25.noarch
libradosstriper-devel-10.2.4-2.fc25.s390x
flac-libs-1.3.2-1.fc25.s390x
perl-Digest-1.17-366.fc25.noarch
teckit-2.5.1-15.fc24.s390x
libpath_utils-0.2.1-29.fc25.s390x
attr-2.4.47-16.fc24.s390x
usbredir-0.7.1-2.fc24.s390x
cairo-devel-1.14.8-1.fc25.s390x
lzo-devel-2.08-8.fc24.s390x
libcap-devel-2.25-2.fc25.s390x
libbsd-0.8.3-1.fc25.s390x
texlive-url-svn32528.3.4-33.fc25.1.noarch
texlive-dvips-bin-svn40987-33.20160520.fc25.1.s390x
texlive-index-svn24099.4.1beta-33.fc25.1.noarch
texlive-setspace-svn24881.6.7a-33.fc25.1.noarch
texlive-mathtools-svn38833-33.fc25.1.noarch
texlive-cm-svn32865.0-33.fc25.1.noarch
texlive-graphics-def-svn41879-33.fc25.1.noarch
texlive-mdwtools-svn15878.1.05.4-33.fc25.1.noarch
texlive-rsfs-svn15878.0-33.fc25.1.noarch
texlive-ucharcat-svn38907-33.fc25.1.noarch
texlive-fontspec-svn41262-33.fc25.1.noarch
texlive-showexpl-svn32737.v0.3l-33.fc25.1.noarch
texlive-pstricks-add-svn40744-33.fc25.1.noarch
texlive-beamer-svn36461.3.36-33.fc25.1.noarch
texlive-collection-basic-svn41149-33.20160520.fc25.1.noarch
xemacs-filesystem-21.5.34-20.20170124hgf412e9f093d4.fc25.noarch
hawkey-0.6.4-3.fc25.s390x
bluez-libs-5.44-1.fc25.s390x
audit-libs-2.7.7-1.fc25.s390x
iproute-4.11.0-1.fc25.s390x
libICE-1.0.9-9.fc25.s390x
python3-ply-3.8-2.fc25.noarch
perl-5.24.2-387.fc25.s390x
graphite2-1.3.10-1.fc25.s390x
vte-profile-0.46.2-1.fc25.s390x
python-libs-2.7.13-2.fc25.s390x
mesa-libGL-17.0.5-3.fc25.s390x
python2-pycurl-7.43.0-6.fc25.s390x
NetworkManager-1.4.4-5.fc25.s390x
mesa-libEGL-devel-17.0.5-3.fc25.s390x
mesa-libGLES-devel-17.0.5-3.fc25.s390x
hostname-3.15-8.fc25.s390x
glibc-headers-2.24-10.fc25.s390x
glusterfs-cli-3.10.5-1.fc25.s390x
git-core-2.9.5-1.fc25.s390x
mock-1.4.3-1.fc25.noarch
gcc-gfortran-6.4.1-1.fc25.s390x
webkitgtk4-plugin-process-gtk2-2.16.6-1.fc25.s390x
perl-Module-CoreList-5.20170821-1.fc25.noarch
python2-pbr-1.10.0-1.fc25.noarch
libtool-2.4.6-14.fc25.s390x
gnutls-dane-3.5.15-1.fc25.s390x
kernel-4.12.11-200.fc25.s390x
gpg-pubkey-a0a7badb-52844296
readline-6.3-8.fc24.s390x
cpio-2.12-3.fc24.s390x
libXcomposite-0.4.4-8.fc24.s390x
procps-ng-3.3.10-11.fc24.s390x
GConf2-3.2.6-16.fc24.s390x
xz-devel-5.2.2-2.fc24.s390x
fedora-logos-22.0.0-3.fc24.s390x
gpg-pubkey-e372e838-56fd7943
kmod-libs-23-1.fc25.s390x
perl-parent-0.236-1.fc25.noarch
perl-TermReadKey-2.37-1.fc25.s390x
ncurses-c++-libs-6.0-6.20160709.fc25.s390x
gzip-1.8-1.fc25.s390x
python3-gobject-base-3.22.0-1.fc25.s390x
python2-yubico-1.3.2-3.fc25.noarch
s390utils-ziomon-1.36.0-1.fc25.s390x
librepo-1.7.18-3.fc25.s390x
gnat-srpm-macros-4-1.fc25.noarch
python-decoratortools-1.8-12.fc25.noarch
m17n-db-1.7.0-7.fc25.noarch
e2fsprogs-libs-1.43.3-1.fc25.s390x
libvorbis-1.3.5-1.fc25.s390x
npth-1.3-1.fc25.s390x
libcephfs1-10.2.4-2.fc25.s390x
wayland-devel-1.12.0-1.fc25.s390x
libxcb-devel-1.12-1.fc25.s390x
perl-encoding-2.19-5.fc25.s390x
python3-cssselect-0.9.2-1.fc25.noarch
gettext-libs-0.19.8.1-3.fc25.s390x
at-spi2-atk-devel-2.22.0-1.fc25.s390x
virglrenderer-0.5.0-1.20160411git61846f92f.fc25.s390x
pixman-devel-0.34.0-2.fc24.s390x
libnfs-devel-1.9.8-2.fc24.s390x
libblkid-2.28.2-2.fc25.s390x
glib2-devel-2.50.3-1.fc25.s390x
texlive-ifxetex-svn19685.0.5-33.fc25.1.noarch
texlive-caption-svn41409-33.fc25.1.noarch
texlive-float-svn15878.1.3d-33.fc25.1.noarch
texlive-pdftex-def-svn22653.0.06d-33.fc25.1.noarch
texlive-xdvi-bin-svn40750-33.20160520.fc25.1.s390x
texlive-beton-svn15878.0-33.fc25.1.noarch
texlive-filecontents-svn24250.1.3-33.fc25.1.noarch
texlive-lm-math-svn36915.1.959-33.fc25.1.noarch
texlive-pslatex-svn16416.0-33.fc25.1.noarch
texlive-times-svn35058.0-33.fc25.1.noarch
texlive-breakurl-svn29901.1.40-33.fc25.1.noarch
texlive-filehook-svn24280.0.5d-33.fc25.1.noarch
texlive-pst-pdf-svn31660.1.1v-33.fc25.1.noarch
texlive-seminar-svn34011.1.62-33.fc25.1.noarch
texlive-xetexconfig-svn41133-33.fc25.1.noarch
python-rpm-macros-3-12.fc25.noarch
nss-pem-1.0.3-3.fc25.s390x
at-spi2-core-2.22.1-1.fc25.s390x
perl-Scalar-List-Utils-1.48-1.fc25.s390x
libtasn1-devel-4.12-1.fc25.s390x
python3-koji-1.13.0-2.fc25.noarch
opus-1.1.5-1.fc25.s390x
elfutils-libs-0.169-1.fc25.s390x
kernel-core-4.11.10-200.fc25.s390x
systemd-container-231-17.fc25.s390x
sudo-1.8.20p2-1.fc25.s390x
libicu-devel-57.1-5.fc25.s390x
js-jquery-2.2.4-3.fc25.noarch
krb5-libs-1.14.4-8.fc25.s390x
apr-1.6.2-1.fc25.s390x
dbus-1.11.16-1.fc25.s390x
libdrm-2.4.82-1.fc25.s390x
pcre2-utf32-10.23-9.fc25.s390x
copy-jdk-configs-2.3-1.fc25.noarch
libdrm-devel-2.4.82-1.fc25.s390x
krb5-workstation-1.14.4-8.fc25.s390x
python3-sssdconfig-1.15.3-1.fc25.noarch
python2-docutils-0.13.1-3.fc25.noarch
graphviz-2.38.0-39.fc25.s390x
kernel-modules-4.12.11-200.fc25.s390x
fedpkg-1.29-3.fc25.noarch
=== TEST BEGIN ===
Using CC: /home/fam/bin/cc
Install prefix /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install
BIOS directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/share/qemu
firmware path /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/share/qemu-firmware
binary directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/bin
library directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/lib
module directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/lib/qemu
libexec directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/libexec
include directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/include
config directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/etc
local state directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/var
Manual directory /var/tmp/patchew-tester-tmp-9_mgu2zl/src/install/share/man
ELF interp prefix /usr/gnemul/qemu-%M
Source path /var/tmp/patchew-tester-tmp-9_mgu2zl/src
GIT submodules ui/keycodemapdb capstone
C compiler /home/fam/bin/cc
Host C compiler cc
C++ compiler c++
Objective-C compiler /home/fam/bin/cc
ARFLAGS rv
CFLAGS -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -g
QEMU_CFLAGS -I/usr/include/pixman-1 -Werror -DHAS_LIBSSH2_SFTP_FSYNC -pthread -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -DNCURSES_WIDECHAR -D_GNU_SOURCE -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings -Wmissing-prototypes -fno-strict-aliasing -fno-common -fwrapv -Wendif-labels -Wno-shift-negative-value -Wno-missing-include-dirs -Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-declaration -Wold-style-definition -Wtype-limits -fstack-protector-strong -I/usr/include/p11-kit-1 -I/usr/include/libpng16 -I/usr/include/libdrm -I$(SRC_PATH)/capstone/include
LDFLAGS -Wl,--warn-common -m64 -g
make make
install install
python python -B
smbd /usr/sbin/smbd
module support no
host CPU s390x
host big endian yes
target list aarch64-softmmu alpha-softmmu arm-softmmu cris-softmmu i386-softmmu lm32-softmmu m68k-softmmu microblazeel-softmmu microblaze-softmmu mips64el-softmmu mips64-softmmu mipsel-softmmu mips-softmmu moxie-softmmu nios2-softmmu or1k-softmmu ppc64-softmmu ppcemb-softmmu ppc-softmmu s390x-softmmu sh4eb-softmmu sh4-softmmu sparc64-softmmu sparc-softmmu tricore-softmmu unicore32-softmmu x86_64-softmmu xtensaeb-softmmu xtensa-softmmu aarch64-linux-user alpha-linux-user armeb-linux-user arm-linux-user cris-linux-user hppa-linux-user i386-linux-user m68k-linux-user microblazeel-linux-user microblaze-linux-user mips64el-linux-user mips64-linux-user mipsel-linux-user mips-linux-user mipsn32el-linux-user mipsn32-linux-user nios2-linux-user or1k-linux-user ppc64abi32-linux-user ppc64le-linux-user ppc64-linux-user ppc-linux-user s390x-linux-user sh4eb-linux-user sh4-linux-user sparc32plus-linux-user sparc64-linux-user sparc-linux-user tilegx-linux-user x86_64-linux-user
gprof enabled no
sparse enabled no
strip binaries yes
profiler no
static build no
SDL support yes (2.0.5)
GTK support yes (3.22.17)
GTK GL support yes
VTE support yes (0.46.2)
TLS priority NORMAL
GNUTLS support yes
GNUTLS rnd yes
libgcrypt no
libgcrypt kdf no
nettle yes (3.3)
nettle kdf yes
libtasn1 yes
curses support yes
virgl support yes
curl support yes
mingw32 support no
Audio drivers oss
Block whitelist (rw)
Block whitelist (ro)
VirtFS support yes
Multipath support no
VNC support yes
VNC SASL support yes
VNC JPEG support yes
VNC PNG support yes
xen support no
brlapi support yes
bluez support yes
Documentation yes
PIE no
vde support no
netmap support no
Linux AIO support yes
ATTR/XATTR support yes
Install blobs yes
KVM support yes
HAX support no
TCG support yes
TCG debug enabled no
TCG interpreter no
RDMA support no
fdt support yes
preadv support yes
fdatasync yes
madvise yes
posix_madvise yes
libcap-ng support yes
vhost-net support yes
vhost-scsi support yes
vhost-vsock support yes
vhost-user support yes
Trace backends log
spice support no
rbd support yes
xfsctl support no
smartcard support yes
libusb yes
usb net redir yes
OpenGL support yes
OpenGL dmabufs yes
libiscsi support yes
libnfs support yes
build guest agent yes
QGA VSS support no
QGA w32 disk info no
QGA MSI support no
seccomp support yes
coroutine backend ucontext
coroutine pool yes
debug stack usage no
crypto afalg no
GlusterFS support yes
gcov gcov
gcov enabled no
TPM support yes
libssh2 support yes
TPM passthrough no
TPM emulator yes
QOM debugging yes
Live block migration yes
lzo support yes
snappy support yes
bzip2 support yes
NUMA host support no
tcmalloc support no
jemalloc support no
avx2 optimization no
replication support yes
VxHS block device no
capstone git
GEN aarch64-softmmu/config-devices.mak.tmp
GEN alpha-softmmu/config-devices.mak.tmp
GEN cris-softmmu/config-devices.mak.tmp
GEN arm-softmmu/config-devices.mak.tmp
GEN cris-softmmu/config-devices.mak
GEN i386-softmmu/config-devices.mak.tmp
GEN alpha-softmmu/config-devices.mak
GEN lm32-softmmu/config-devices.mak.tmp
GEN aarch64-softmmu/config-devices.mak
GEN arm-softmmu/config-devices.mak
GEN m68k-softmmu/config-devices.mak.tmp
GEN microblazeel-softmmu/config-devices.mak.tmp
GEN i386-softmmu/config-devices.mak
GEN lm32-softmmu/config-devices.mak
GEN microblaze-softmmu/config-devices.mak.tmp
GEN mips64el-softmmu/config-devices.mak.tmp
GEN m68k-softmmu/config-devices.mak
GEN mips64-softmmu/config-devices.mak.tmp
GEN microblazeel-softmmu/config-devices.mak
GEN mipsel-softmmu/config-devices.mak.tmp
GEN microblaze-softmmu/config-devices.mak
GEN mips-softmmu/config-devices.mak.tmp
GEN mips64el-softmmu/config-devices.mak
GEN moxie-softmmu/config-devices.mak.tmp
GEN mipsel-softmmu/config-devices.mak
GEN mips64-softmmu/config-devices.mak
GEN nios2-softmmu/config-devices.mak.tmp
GEN or1k-softmmu/config-devices.mak.tmp
GEN moxie-softmmu/config-devices.mak
GEN ppc64-softmmu/config-devices.mak.tmp
GEN mips-softmmu/config-devices.mak
GEN or1k-softmmu/config-devices.mak
GEN nios2-softmmu/config-devices.mak
GEN ppcemb-softmmu/config-devices.mak.tmp
GEN s390x-softmmu/config-devices.mak.tmp
GEN ppc-softmmu/config-devices.mak.tmp
GEN s390x-softmmu/config-devices.mak
GEN ppc64-softmmu/config-devices.mak
GEN sh4-softmmu/config-devices.mak.tmp
GEN sh4eb-softmmu/config-devices.mak.tmp
GEN ppc-softmmu/config-devices.mak
GEN ppcemb-softmmu/config-devices.mak
GEN sparc64-softmmu/config-devices.mak.tmp
GEN sparc-softmmu/config-devices.mak.tmp
GEN sh4eb-softmmu/config-devices.mak
GEN tricore-softmmu/config-devices.mak.tmp
GEN sh4-softmmu/config-devices.mak
GEN unicore32-softmmu/config-devices.mak.tmp
GEN sparc64-softmmu/config-devices.mak
GEN sparc-softmmu/config-devices.mak
GEN x86_64-softmmu/config-devices.mak.tmp
GEN tricore-softmmu/config-devices.mak
GEN xtensaeb-softmmu/config-devices.mak.tmp
GEN xtensa-softmmu/config-devices.mak.tmp
GEN unicore32-softmmu/config-devices.mak
GEN xtensaeb-softmmu/config-devices.mak
GEN aarch64-linux-user/config-devices.mak.tmp
GEN alpha-linux-user/config-devices.mak.tmp
GEN xtensa-softmmu/config-devices.mak
GEN aarch64-linux-user/config-devices.mak
GEN armeb-linux-user/config-devices.mak.tmp
GEN x86_64-softmmu/config-devices.mak
GEN alpha-linux-user/config-devices.mak
GEN arm-linux-user/config-devices.mak.tmp
GEN cris-linux-user/config-devices.mak.tmp
GEN hppa-linux-user/config-devices.mak.tmp
GEN armeb-linux-user/config-devices.mak
GEN i386-linux-user/config-devices.mak.tmp
GEN arm-linux-user/config-devices.mak
GEN cris-linux-user/config-devices.mak
GEN hppa-linux-user/config-devices.mak
GEN m68k-linux-user/config-devices.mak.tmp
GEN microblazeel-linux-user/config-devices.mak.tmp
GEN microblaze-linux-user/config-devices.mak.tmp
GEN i386-linux-user/config-devices.mak
GEN mips64el-linux-user/config-devices.mak.tmp
GEN microblazeel-linux-user/config-devices.mak
GEN microblaze-linux-user/config-devices.mak
GEN m68k-linux-user/config-devices.mak
GEN mips64-linux-user/config-devices.mak.tmp
GEN mipsel-linux-user/config-devices.mak.tmp
GEN mips-linux-user/config-devices.mak.tmp
GEN mips64el-linux-user/config-devices.mak
GEN mipsn32el-linux-user/config-devices.mak.tmp
GEN mips64-linux-user/config-devices.mak
GEN mipsel-linux-user/config-devices.mak
GEN mips-linux-user/config-devices.mak
GEN mipsn32-linux-user/config-devices.mak.tmp
GEN nios2-linux-user/config-devices.mak.tmp
GEN or1k-linux-user/config-devices.mak.tmp
GEN mipsn32el-linux-user/config-devices.mak
GEN mipsn32-linux-user/config-devices.mak
GEN ppc64abi32-linux-user/config-devices.mak.tmp
GEN nios2-linux-user/config-devices.mak
GEN ppc64le-linux-user/config-devices.mak.tmp
GEN ppc64-linux-user/config-devices.mak.tmp
GEN or1k-linux-user/config-devices.mak
GEN ppc64abi32-linux-user/config-devices.mak
GEN ppc-linux-user/config-devices.mak.tmp
GEN ppc64-linux-user/config-devices.mak
GEN s390x-linux-user/config-devices.mak.tmp
GEN ppc64le-linux-user/config-devices.mak
GEN ppc-linux-user/config-devices.mak
GEN sh4-linux-user/config-devices.mak.tmp
GEN sh4eb-linux-user/config-devices.mak.tmp
GEN s390x-linux-user/config-devices.mak
GEN sparc32plus-linux-user/config-devices.mak.tmp
GEN sparc64-linux-user/config-devices.mak.tmp
GEN sh4eb-linux-user/config-devices.mak
GEN sh4-linux-user/config-devices.mak
GEN sparc-linux-user/config-devices.mak.tmp
GEN sparc32plus-linux-user/config-devices.mak
GEN tilegx-linux-user/config-devices.mak.tmp
GEN sparc64-linux-user/config-devices.mak
GEN x86_64-linux-user/config-devices.mak.tmp
GEN tilegx-linux-user/config-devices.mak
GEN sparc-linux-user/config-devices.mak
GEN config-host.h
GIT ui/keycodemapdb capstone
GEN x86_64-linux-user/config-devices.mak
GEN qemu-options.def
GEN qmp-commands.h
GEN qapi-types.h
GEN qapi-visit.h
Submodule 'capstone' (git://git.qemu.org/capstone.git) registered for path 'capstone'
Submodule 'ui/keycodemapdb' (git://git.qemu.org/keycodemapdb.git) registered for path 'ui/keycodemapdb'
Cloning into '/var/tmp/patchew-tester-tmp-9_mgu2zl/src/capstone'...
GEN qapi-event.h
GEN qmp-marshal.c
GEN qapi-types.c
GEN qapi-visit.c
GEN qapi-event.c
GEN qmp-introspect.h
GEN qmp-introspect.c
GEN trace/generated-tcg-tracers.h
GEN trace/generated-helpers-wrappers.h
GEN trace/generated-helpers.h
GEN trace/generated-helpers.c
GEN module_block.h
GEN tests/test-qapi-types.h
GEN tests/test-qapi-visit.h
GEN tests/test-qmp-commands.h
GEN tests/test-qapi-event.h
GEN tests/test-qmp-introspect.h
GEN trace-root.h
GEN util/trace.h
GEN crypto/trace.h
GEN io/trace.h
GEN migration/trace.h
GEN block/trace.h
GEN chardev/trace.h
GEN hw/block/trace.h
GEN hw/block/dataplane/trace.h
GEN hw/char/trace.h
GEN hw/intc/trace.h
GEN hw/net/trace.h
GEN hw/virtio/trace.h
GEN hw/audio/trace.h
GEN hw/misc/trace.h
GEN hw/usb/trace.h
GEN hw/scsi/trace.h
GEN hw/nvram/trace.h
GEN hw/display/trace.h
GEN hw/input/trace.h
GEN hw/timer/trace.h
GEN hw/dma/trace.h
GEN hw/sparc/trace.h
GEN hw/sd/trace.h
GEN hw/isa/trace.h
GEN hw/mem/trace.h
GEN hw/i386/trace.h
GEN hw/i386/xen/trace.h
GEN hw/9pfs/trace.h
GEN hw/ppc/trace.h
GEN hw/pci/trace.h
GEN hw/s390x/trace.h
GEN hw/vfio/trace.h
GEN hw/acpi/trace.h
GEN hw/arm/trace.h
GEN hw/alpha/trace.h
GEN hw/xen/trace.h
GEN hw/ide/trace.h
GEN ui/trace.h
GEN audio/trace.h
GEN net/trace.h
GEN target/arm/trace.h
GEN target/i386/trace.h
GEN target/mips/trace.h
GEN target/sparc/trace.h
GEN target/s390x/trace.h
GEN target/ppc/trace.h
GEN qom/trace.h
GEN linux-user/trace.h
GEN qapi/trace.h
GEN accel/tcg/trace.h
GEN accel/kvm/trace.h
GEN nbd/trace.h
GEN scsi/trace.h
GEN trace-root.c
GEN util/trace.c
GEN crypto/trace.c
GEN io/trace.c
GEN block/trace.c
GEN migration/trace.c
GEN chardev/trace.c
GEN hw/block/trace.c
GEN hw/block/dataplane/trace.c
GEN hw/char/trace.c
GEN hw/intc/trace.c
GEN hw/net/trace.c
GEN hw/virtio/trace.c
GEN hw/audio/trace.c
GEN hw/misc/trace.c
GEN hw/usb/trace.c
GEN hw/scsi/trace.c
GEN hw/display/trace.c
GEN hw/nvram/trace.c
GEN hw/input/trace.c
GEN hw/timer/trace.c
GEN hw/dma/trace.c
GEN hw/sparc/trace.c
GEN hw/isa/trace.c
GEN hw/sd/trace.c
GEN hw/mem/trace.c
GEN hw/i386/trace.c
GEN hw/i386/xen/trace.c
GEN hw/9pfs/trace.c
GEN hw/ppc/trace.c
GEN hw/pci/trace.c
GEN hw/s390x/trace.c
GEN hw/vfio/trace.c
GEN hw/acpi/trace.c
GEN hw/arm/trace.c
GEN hw/alpha/trace.c
GEN hw/xen/trace.c
GEN hw/ide/trace.c
GEN ui/trace.c
GEN audio/trace.c
GEN net/trace.c
GEN target/arm/trace.c
GEN target/i386/trace.c
GEN target/mips/trace.c
GEN target/sparc/trace.c
GEN target/s390x/trace.c
GEN target/ppc/trace.c
GEN qom/trace.c
GEN linux-user/trace.c
GEN qapi/trace.c
GEN accel/tcg/trace.c
GEN accel/kvm/trace.c
GEN nbd/trace.c
GEN scsi/trace.c
GEN config-all-devices.mak
Cloning into '/var/tmp/patchew-tester-tmp-9_mgu2zl/src/ui/keycodemapdb'...
GEN ui/input-keymap-linux-to-qcode.c
GEN ui/input-keymap-qcode-to-qnum.c
GEN ui/input-keymap-qnum-to-qcode.c
CC cs.o
CC SStream.o
CC utils.o
CC MCInstrDesc.o
CC MCRegisterInfo.o
CC arch/ARM/ARMDisassembler.o
CC arch/ARM/ARMInstPrinter.o
CC arch/ARM/ARMMapping.o
CC arch/ARM/ARMModule.o
CC arch/AArch64/AArch64BaseInfo.o
CC arch/AArch64/AArch64Disassembler.o
CC arch/AArch64/AArch64InstPrinter.o
CC arch/AArch64/AArch64Mapping.o
CC arch/AArch64/AArch64Module.o
CC arch/Mips/MipsDisassembler.o
CC arch/Mips/MipsInstPrinter.o
CC arch/Mips/MipsMapping.o
CC arch/Mips/MipsModule.o
CC arch/PowerPC/PPCDisassembler.o
CC arch/PowerPC/PPCInstPrinter.o
CC arch/PowerPC/PPCMapping.o
CC arch/PowerPC/PPCModule.o
CC arch/Sparc/SparcDisassembler.o
CC arch/Sparc/SparcInstPrinter.o
CC arch/Sparc/SparcMapping.o
CC arch/SystemZ/SystemZDisassembler.o
CC arch/Sparc/SparcModule.o
CC arch/SystemZ/SystemZInstPrinter.o
CC arch/SystemZ/SystemZMapping.o
CC arch/SystemZ/SystemZModule.o
CC arch/SystemZ/SystemZMCTargetDesc.o
CC arch/X86/X86DisassemblerDecoder.o
CC arch/X86/X86Disassembler.o
CC arch/X86/X86IntelInstPrinter.o
CC arch/X86/X86ATTInstPrinter.o
CC arch/X86/X86Mapping.o
CC arch/X86/X86Module.o
CC arch/XCore/XCoreDisassembler.o
CC arch/XCore/XCoreInstPrinter.o
CC arch/XCore/XCoreMapping.o
CC arch/XCore/XCoreModule.o
CC MCInst.o
AR libcapstone.a
ar: creating /var/tmp/patchew-tester-tmp-9_mgu2zl/src/build/capstone/libcapstone.a
make[1]: '/var/tmp/patchew-tester-tmp-9_mgu2zl/src/build/capstone/libcapstone.a' is up to date.
GEN docs/version.texi
GEN qemu-options.texi
GEN qemu-monitor.texi
CC tests/qemu-iotests/socket_scm_helper.o
GEN qemu-img-cmds.texi
GEN qemu-monitor-info.texi
GEN qemu-img.1
GEN qemu-nbd.8
GEN qemu-ga.8
GEN docs/interop/qemu-qmp-qapi.texi
GEN docs/interop/qemu-ga-qapi.texi
GEN docs/qemu-block-drivers.7
GEN qga/qapi-generated/qga-qapi-types.h
GEN fsdev/virtfs-proxy-helper.1
GEN qga/qapi-generated/qga-qapi-visit.h
GEN qga/qapi-generated/qga-qmp-commands.h
GEN qga/qapi-generated/qga-qapi-types.c
GEN qga/qapi-generated/qga-qapi-visit.c
GEN qga/qapi-generated/qga-qmp-marshal.c
CC qmp-introspect.o
CC qapi-types.o
CC qapi-visit.o
CC qapi-event.o
CC qapi/qapi-visit-core.o
CC qapi/qapi-dealloc-visitor.o
CC qapi/qobject-input-visitor.o
CC qapi/qobject-output-visitor.o
CC qapi/qmp-registry.o
CC qapi/qmp-dispatch.o
CC qapi/string-input-visitor.o
CC qapi/string-output-visitor.o
CC qapi/opts-visitor.o
CC qapi/qapi-clone-visitor.o
CC qapi/qmp-event.o
CC qapi/qapi-util.o
CC qobject/qnull.o
CC qobject/qnum.o
CC qobject/qstring.o
CC qobject/qdict.o
CC qobject/qlist.o
CC qobject/qbool.o
CC qobject/qlit.o
CC qobject/qjson.o
CC qobject/qobject.o
CC qobject/json-lexer.o
CC qobject/json-streamer.o
CC qobject/json-parser.o
CC trace/control.o
CC trace/qmp.o
CC util/osdep.o
CC util/cutils.o
CC util/unicode.o
CC util/qemu-timer-common.o
CC util/bufferiszero.o
CC util/lockcnt.o
CC util/aiocb.o
CC util/async.o
CC util/thread-pool.o
CC util/qemu-timer.o
CC util/main-loop.o
CC util/iohandler.o
CC util/aio-posix.o
CC util/compatfd.o
CC util/event_notifier-posix.o
CC util/mmap-alloc.o
CC util/oslib-posix.o
CC util/qemu-openpty.o
CC util/qemu-thread-posix.o
CC util/memfd.o
CC util/envlist.o
CC util/path.o
CC util/module.o
CC util/host-utils.o
CC util/bitmap.o
CC util/bitops.o
CC util/hbitmap.o
CC util/fifo8.o
CC util/acl.o
CC util/cacheinfo.o
CC util/error.o
CC util/qemu-error.o
CC util/id.o
CC util/iov.o
CC util/qemu-config.o
CC util/qemu-sockets.o
CC util/uri.o
CC util/notify.o
CC util/qemu-option.o
CC util/qemu-progress.o
CC util/keyval.o
CC util/hexdump.o
CC util/crc32c.o
CC util/uuid.o
CC util/throttle.o
CC util/getauxval.o
CC util/readline.o
CC util/rcu.o
CC util/qemu-coroutine.o
CC util/qemu-coroutine-lock.o
CC util/qemu-coroutine-io.o
CC util/qemu-coroutine-sleep.o
CC util/coroutine-ucontext.o
CC util/buffer.o
CC util/timed-average.o
CC util/base64.o
CC util/log.o
CC util/pagesize.o
CC util/qdist.o
CC util/qht.o
CC util/range.o
CC util/stats64.o
CC util/systemd.o
CC trace-root.o
CC util/trace.o
CC crypto/trace.o
CC io/trace.o
CC migration/trace.o
CC block/trace.o
CC chardev/trace.o
CC hw/block/trace.o
CC hw/block/dataplane/trace.o
CC hw/char/trace.o
CC hw/intc/trace.o
CC hw/net/trace.o
CC hw/virtio/trace.o
CC hw/audio/trace.o
CC hw/misc/trace.o
CC hw/usb/trace.o
CC hw/scsi/trace.o
CC hw/nvram/trace.o
CC hw/display/trace.o
CC hw/input/trace.o
CC hw/timer/trace.o
CC hw/dma/trace.o
CC hw/sparc/trace.o
CC hw/isa/trace.o
CC hw/sd/trace.o
CC hw/mem/trace.o
CC hw/i386/trace.o
CC hw/i386/xen/trace.o
CC hw/9pfs/trace.o
CC hw/ppc/trace.o
CC hw/pci/trace.o
CC hw/s390x/trace.o
CC hw/vfio/trace.o
CC hw/acpi/trace.o
CC hw/arm/trace.o
CC hw/alpha/trace.o
CC hw/xen/trace.o
CC hw/ide/trace.o
CC ui/trace.o
CC audio/trace.o
CC net/trace.o
CC target/arm/trace.o
CC target/i386/trace.o
CC target/mips/trace.o
CC target/sparc/trace.o
CC target/s390x/trace.o
CC qom/trace.o
CC target/ppc/trace.o
CC linux-user/trace.o
CC qapi/trace.o
CC accel/tcg/trace.o
CC accel/kvm/trace.o
CC nbd/trace.o
CC scsi/trace.o
CC crypto/pbkdf-stub.o
CC stubs/arch-query-cpu-def.o
CC stubs/arch-query-cpu-model-comparison.o
CC stubs/arch-query-cpu-model-expansion.o
CC stubs/arch-query-cpu-model-baseline.o
CC stubs/bdrv-next-monitor-owned.o
CC stubs/blockdev-close-all-bdrv-states.o
CC stubs/blk-commit-all.o
CC stubs/clock-warp.o
CC stubs/cpu-get-clock.o
CC stubs/cpu-get-icount.o
CC stubs/dump.o
CC stubs/error-printf.o
CC stubs/fdset.o
CC stubs/gdbstub.o
CC stubs/get-vm-name.o
CC stubs/iothread.o
CC stubs/iothread-lock.o
CC stubs/is-daemonized.o
CC stubs/linux-aio.o
CC stubs/machine-init-done.o
CC stubs/migr-blocker.o
CC stubs/change-state-handler.o
CC stubs/monitor.o
CC stubs/notify-event.o
CC stubs/qtest.o
CC stubs/replay.o
CC stubs/runstate-check.o
CC stubs/set-fd-handler.o
CC stubs/slirp.o
CC stubs/sysbus.o
CC stubs/tpm.o
CC stubs/trace-control.o
CC stubs/uuid.o
CC stubs/vm-stop.o
CC stubs/vmstate.o
CC stubs/qmp_pc_dimm.o
CC stubs/target-monitor-defs.o
CC stubs/target-get-monitor-def.o
CC stubs/pc_madt_cpu_entry.o
CC stubs/vmgenid.o
CC stubs/xen-common.o
CC stubs/xen-hvm.o
CC stubs/pci-host-piix.o
CC ui/input-keymap.o
CC contrib/ivshmem-client/ivshmem-client.o
CC qemu-keymap.o
CC contrib/ivshmem-client/main.o
CC contrib/ivshmem-server/ivshmem-server.o
CC contrib/ivshmem-server/main.o
CC qemu-nbd.o
CC blockjob.o
CC block.o
CC qemu-io-cmds.o
CC replication.o
CC block/raw-format.o
CC block/qcow.o
CC block/vdi.o
CC block/vmdk.o
CC block/cloop.o
CC block/bochs.o
CC block/vpc.o
CC block/vvfat.o
CC block/dmg.o
CC block/qcow2.o
CC block/qcow2-refcount.o
CC block/qcow2-cluster.o
CC block/qcow2-snapshot.o
CC block/qcow2-cache.o
CC block/qcow2-bitmap.o
CC block/qed.o
CC block/qed-l2-cache.o
CC block/qed-table.o
CC block/qed-cluster.o
CC block/qed-check.o
CC block/vhdx-endian.o
CC block/vhdx.o
CC block/vhdx-log.o
CC block/quorum.o
CC block/parallels.o
CC block/blkdebug.o
CC block/blkverify.o
CC block/blkreplay.o
CC block/block-backend.o
CC block/snapshot.o
CC block/qapi.o
CC block/file-posix.o
CC block/linux-aio.o
CC block/null.o
CC block/mirror.o
CC block/commit.o
CC block/io.o
CC block/throttle-groups.o
CC block/nbd.o
CC block/nbd-client.o
CC block/sheepdog.o
CC block/iscsi-opts.o
CC block/accounting.o
CC block/dirty-bitmap.o
CC block/write-threshold.o
CC block/backup.o
CC block/replication.o
CC block/throttle.o
CC block/crypto.o
CC nbd/server.o
CC nbd/client.o
CC nbd/common.o
CC scsi/utils.o
CC scsi/pr-manager.o
CC scsi/pr-manager-helper.o
CC block/iscsi.o
CC block/nfs.o
CC block/curl.o
CC block/rbd.o
CC block/gluster.o
CC block/ssh.o
CC block/dmg-bz2.o
CC crypto/init.o
CC crypto/hash.o
CC crypto/hash-nettle.o
CC crypto/hmac.o
CC crypto/hmac-nettle.o
CC crypto/aes.o
CC crypto/desrfb.o
CC crypto/cipher.o
CC crypto/tlscreds.o
CC crypto/tlscredsanon.o
CC crypto/tlscredsx509.o
CC crypto/tlssession.o
CC crypto/secret.o
CC crypto/random-gnutls.o
CC crypto/pbkdf.o
CC crypto/pbkdf-nettle.o
CC crypto/ivgen.o
CC crypto/ivgen-essiv.o
CC crypto/ivgen-plain.o
CC crypto/ivgen-plain64.o
CC crypto/afsplit.o
CC crypto/xts.o
CC crypto/block.o
CC crypto/block-qcow.o
CC crypto/block-luks.o
CC io/channel.o
CC io/channel-buffer.o
CC io/channel-command.o
CC io/channel-file.o
CC io/channel-socket.o
CC io/channel-tls.o
CC io/channel-watch.o
CC io/channel-websock.o
CC io/channel-util.o
CC io/dns-resolver.o
CC io/task.o
CC qom/object.o
CC qom/container.o
CC qom/qom-qobject.o
CC qom/object_interfaces.o
CC qemu-io.o
GEN qemu-img-cmds.h
CC fsdev/virtfs-proxy-helper.o
CC fsdev/9p-marshal.o
CC fsdev/9p-iov-marshal.o
CC scsi/qemu-pr-helper.o
CC qemu-bridge-helper.o
CC blockdev.o
CC blockdev-nbd.o
CC bootdevice.o
CC iothread.o
CC qdev-monitor.o
CC device-hotplug.o
CC os-posix.o
CC bt-host.o
CC bt-vhci.o
CC dma-helpers.o
CC vl.o
CC tpm.o
CC qemu-seccomp.o
CC device_tree.o
CC qmp-marshal.o
CC qmp.o
CC hmp.o
CC cpus-common.o
CC audio/audio.o
CC audio/noaudio.o
CC audio/wavaudio.o
CC audio/mixeng.o
CC audio/sdlaudio.o
CC audio/ossaudio.o
CC audio/wavcapture.o
CC backends/rng.o
CC backends/rng-egd.o
CC backends/rng-random.o
CC backends/tpm.o
CC backends/hostmem.o
CC backends/hostmem-ram.o
CC backends/hostmem-file.o
CC backends/cryptodev.o
CC backends/cryptodev-builtin.o
CC block/stream.o
CC chardev/msmouse.o
CC chardev/wctablet.o
CC chardev/testdev.o
CC chardev/baum.o
CC disas/alpha.o
CC disas/arm.o
CXX disas/arm-a64.o
CC disas/cris.o
CC disas/hppa.o
CC disas/i386.o
CC disas/m68k.o
CC disas/microblaze.o
CC disas/mips.o
CC disas/nios2.o
CC disas/moxie.o
CC disas/ppc.o
CC disas/s390.o
CC disas/sh4.o
CC disas/sparc.o
CC disas/lm32.o
CC disas/xtensa.o
CXX disas/libvixl/vixl/utils.o
CXX disas/libvixl/vixl/compiler-intrinsics.o
CXX disas/libvixl/vixl/a64/instructions-a64.o
CXX disas/libvixl/vixl/a64/decoder-a64.o
CXX disas/libvixl/vixl/a64/disasm-a64.o
CC fsdev/qemu-fsdev.o
CC fsdev/qemu-fsdev-opts.o
CC fsdev/qemu-fsdev-throttle.o
CC fsdev/qemu-fsdev-dummy.o
CC hw/9pfs/9p.o
CC hw/9pfs/9p-util.o
CC hw/9pfs/9p-local.o
CC hw/9pfs/9p-xattr.o
CC hw/9pfs/9p-xattr-user.o
CC hw/9pfs/9p-posix-acl.o
CC hw/9pfs/coth.o
CC hw/9pfs/cofs.o
CC hw/9pfs/codir.o
CC hw/9pfs/cofile.o
CC hw/9pfs/coxattr.o
CC hw/9pfs/9p-synth.o
CC hw/9pfs/9p-handle.o
CC hw/9pfs/9p-proxy.o
CC hw/acpi/piix4.o
CC hw/acpi/core.o
CC hw/acpi/pcihp.o
CC hw/acpi/tco.o
CC hw/acpi/ich9.o
CC hw/acpi/cpu_hotplug.o
CC hw/acpi/memory_hotplug.o
CC hw/acpi/cpu.o
CC hw/acpi/nvdimm.o
CC hw/acpi/vmgenid.o
CC hw/acpi/acpi_interface.o
CC hw/acpi/bios-linker-loader.o
CC hw/acpi/aml-build.o
CC hw/acpi/ipmi.o
CC hw/acpi/acpi-stub.o
CC hw/acpi/ipmi-stub.o
CC hw/audio/sb16.o
CC hw/audio/es1370.o
CC hw/audio/ac97.o
CC hw/audio/fmopl.o
CC hw/audio/adlib.o
CC hw/audio/gus.o
CC hw/audio/gusemu_hal.o
CC hw/audio/gusemu_mixer.o
CC hw/audio/cs4231a.o
CC hw/audio/intel-hda.o
CC hw/audio/hda-codec.o
CC hw/audio/pcspk.o
CC hw/audio/wm8750.o
CC hw/audio/pl041.o
CC hw/audio/lm4549.o
CC hw/audio/cs4231.o
CC hw/audio/marvell_88w8618.o
CC hw/audio/milkymist-ac97.o
CC hw/block/block.o
CC hw/audio/soundhw.o
CC hw/block/cdrom.o
CC hw/block/hd-geometry.o
CC hw/block/fdc.o
CC hw/block/m25p80.o
CC hw/block/pflash_cfi01.o
CC hw/block/nand.o
CC hw/block/pflash_cfi02.o
CC hw/block/ecc.o
CC hw/block/onenand.o
CC hw/block/nvme.o
CC hw/bt/core.o
CC hw/bt/l2cap.o
CC hw/bt/sdp.o
CC hw/bt/hci.o
CC hw/bt/hid.o
CC hw/bt/hci-csr.o
CC hw/char/ipoctal232.o
CC hw/char/escc.o
CC hw/char/parallel.o
CC hw/char/pl011.o
CC hw/char/serial.o
CC hw/char/serial-isa.o
CC hw/char/serial-pci.o
CC hw/char/virtio-console.o
CC hw/char/xilinx_uartlite.o
CC hw/char/cadence_uart.o
CC hw/char/cmsdk-apb-uart.o
CC hw/char/etraxfs_ser.o
CC hw/char/debugcon.o
CC hw/char/grlib_apbuart.o
CC hw/char/imx_serial.o
CC hw/char/lm32_juart.o
CC hw/char/lm32_uart.o
CC hw/char/milkymist-uart.o
CC hw/char/sclpconsole-lm.o
CC hw/char/sclpconsole.o
CC hw/core/qdev.o
CC hw/core/qdev-properties.o
CC hw/core/bus.o
CC hw/core/reset.o
CC hw/core/fw-path-provider.o
CC hw/core/irq.o
CC hw/core/hotplug.o
CC hw/core/nmi.o
CC hw/core/empty_slot.o
CC hw/core/stream.o
CC hw/core/ptimer.o
CC hw/core/sysbus.o
CC hw/core/machine.o
CC hw/core/loader.o
CC hw/core/loader-fit.o
CC hw/core/qdev-properties-system.o
CC hw/core/register.o
CC hw/core/or-irq.o
CC hw/core/platform-bus.o
CC hw/cpu/core.o
CC hw/display/ads7846.o
CC hw/display/cirrus_vga.o
CC hw/display/g364fb.o
CC hw/display/jazz_led.o
CC hw/display/pl110.o
CC hw/display/ssd0303.o
CC hw/display/ssd0323.o
CC hw/display/vga-pci.o
CC hw/display/vga-isa.o
CC hw/display/vga-isa-mm.o
CC hw/display/vmware_vga.o
CC hw/display/blizzard.o
CC hw/display/exynos4210_fimd.o
CC hw/display/framebuffer.o
CC hw/display/milkymist-vgafb.o
CC hw/display/milkymist-tmu2.o
CC hw/display/tc6393xb.o
CC hw/dma/puv3_dma.o
CC hw/dma/rc4030.o
CC hw/dma/pl080.o
CC hw/dma/pl330.o
CC hw/dma/i82374.o
CC hw/dma/i8257.o
CC hw/dma/xilinx_axidma.o
CC hw/dma/xlnx-zynq-devcfg.o
CC hw/dma/etraxfs_dma.o
CC hw/dma/sparc32_dma.o
CC hw/dma/sun4m_iommu.o
CC hw/gpio/max7310.o
CC hw/gpio/pl061.o
CC hw/gpio/zaurus.o
CC hw/gpio/puv3_gpio.o
CC hw/gpio/mpc8xxx.o
CC hw/gpio/gpio_key.o
CC hw/i2c/core.o
CC hw/i2c/smbus.o
CC hw/i2c/smbus_eeprom.o
CC hw/i2c/i2c-ddc.o
CC hw/i2c/smbus_ich9.o
CC hw/i2c/versatile_i2c.o
CC hw/i2c/pm_smbus.o
CC hw/i2c/bitbang_i2c.o
CC hw/i2c/exynos4210_i2c.o
CC hw/i2c/imx_i2c.o
CC hw/i2c/aspeed_i2c.o
CC hw/ide/core.o
CC hw/ide/atapi.o
CC hw/ide/qdev.o
CC hw/ide/pci.o
CC hw/ide/isa.o
CC hw/ide/piix.o
CC hw/ide/macio.o
CC hw/ide/cmd646.o
CC hw/ide/mmio.o
CC hw/ide/via.o
CC hw/ide/microdrive.o
CC hw/ide/ahci.o
CC hw/ide/ich.o
CC hw/ide/ahci-allwinner.o
CC hw/input/adb.o
CC hw/input/hid.o
CC hw/input/lm832x.o
CC hw/input/pckbd.o
CC hw/input/pl050.o
CC hw/input/ps2.o
CC hw/input/stellaris_input.o
CC hw/input/tsc2005.o
CC hw/input/vmmouse.o
CC hw/input/virtio-input.o
CC hw/input/virtio-input-hid.o
CC hw/input/virtio-input-host.o
CC hw/intc/heathrow_pic.o
CC hw/intc/i8259_common.o
CC hw/intc/i8259.o
CC hw/intc/pl190.o
CC hw/intc/puv3_intc.o
CC hw/intc/xilinx_intc.o
CC hw/intc/etraxfs_pic.o
CC hw/intc/imx_avic.o
CC hw/intc/lm32_pic.o
CC hw/intc/realview_gic.o
CC hw/intc/slavio_intctl.o
CC hw/intc/ioapic_common.o
CC hw/intc/arm_gic_common.o
CC hw/intc/arm_gic.o
CC hw/intc/arm_gicv2m.o
CC hw/intc/arm_gicv3_common.o
CC hw/intc/arm_gicv3.o
CC hw/intc/arm_gicv3_dist.o
CC hw/intc/arm_gicv3_redist.o
CC hw/intc/arm_gicv3_its_common.o
CC hw/intc/openpic.o
CC hw/intc/intc.o
CC hw/ipack/ipack.o
CC hw/ipack/tpci200.o
CC hw/ipmi/ipmi.o
CC hw/ipmi/ipmi_bmc_sim.o
CC hw/ipmi/ipmi_bmc_extern.o
CC hw/ipmi/isa_ipmi_kcs.o
CC hw/ipmi/isa_ipmi_bt.o
CC hw/isa/isa-bus.o
CC hw/isa/apm.o
CC hw/isa/i82378.o
CC hw/isa/pc87312.o
CC hw/isa/piix4.o
CC hw/isa/vt82c686.o
CC hw/mem/pc-dimm.o
CC hw/mem/nvdimm.o
CC hw/misc/applesmc.o
CC hw/misc/max111x.o
CC hw/misc/tmp105.o
CC hw/misc/tmp421.o
CC hw/misc/debugexit.o
CC hw/misc/sga.o
CC hw/misc/pc-testdev.o
CC hw/misc/pci-testdev.o
CC hw/misc/edu.o
CC hw/misc/unimp.o
CC hw/misc/vmcoreinfo.o
CC hw/misc/arm_l2x0.o
CC hw/misc/arm_integrator_debug.o
CC hw/misc/a9scu.o
CC hw/misc/arm11scu.o
CC hw/misc/puv3_pm.o
CC hw/misc/macio/macio.o
CC hw/misc/macio/cuda.o
CC hw/misc/macio/mac_dbdma.o
CC hw/net/dp8393x.o
CC hw/net/ne2000.o
CC hw/net/eepro100.o
CC hw/net/pcnet-pci.o
CC hw/net/pcnet.o
CC hw/net/e1000.o
CC hw/net/e1000x_common.o
CC hw/net/net_tx_pkt.o
CC hw/net/net_rx_pkt.o
CC hw/net/e1000e.o
CC hw/net/e1000e_core.o
CC hw/net/rtl8139.o
CC hw/net/vmxnet3.o
CC hw/net/smc91c111.o
CC hw/net/lan9118.o
CC hw/net/ne2000-isa.o
CC hw/net/opencores_eth.o
CC hw/net/xgmac.o
CC hw/net/mipsnet.o
CC hw/net/xilinx_axienet.o
CC hw/net/allwinner_emac.o
CC hw/net/imx_fec.o
CC hw/net/cadence_gem.o
CC hw/net/stellaris_enet.o
CC hw/net/lance.o
CC hw/net/sunhme.o
CC hw/net/ftgmac100.o
CC hw/net/sungem.o
CC hw/net/rocker/rocker.o
CC hw/net/rocker/rocker_fp.o
CC hw/net/rocker/rocker_desc.o
CC hw/net/rocker/rocker_world.o
CC hw/net/rocker/rocker_of_dpa.o
CC hw/nvram/ds1225y.o
CC hw/nvram/eeprom93xx.o
CC hw/nvram/fw_cfg.o
CC hw/nvram/chrp_nvram.o
CC hw/nvram/mac_nvram.o
CC hw/pci-bridge/pci_bridge_dev.o
CC hw/pci-bridge/pcie_pci_bridge.o
CC hw/pci-bridge/pcie_root_port.o
CC hw/pci-bridge/gen_pcie_root_port.o
CC hw/pci-bridge/xio3130_upstream.o
CC hw/pci-bridge/pci_expander_bridge.o
CC hw/pci-bridge/xio3130_downstream.o
CC hw/pci-bridge/ioh3420.o
CC hw/pci-bridge/i82801b11.o
CC hw/pci-host/pam.o
CC hw/pci-bridge/dec.o
CC hw/pci-host/prep.o
CC hw/pci-host/grackle.o
CC hw/pci-host/uninorth.o
CC hw/pci-host/ppce500.o
CC hw/pci-host/versatile.o
CC hw/pci-host/bonito.o
CC hw/pci-host/apb.o
CC hw/pci-host/piix.o
CC hw/pci-host/q35.o
CC hw/pci-host/gpex.o
CC hw/pci-host/xilinx-pcie.o
CC hw/pci/pci.o
CC hw/pci/pci_bridge.o
CC hw/pci/msix.o
CC hw/pci/msi.o
CC hw/pci/shpc.o
CC hw/pci/slotid_cap.o
CC hw/pci/pci_host.o
CC hw/pci/pcie.o
CC hw/pci/pcie_aer.o
CC hw/pci/pcie_host.o
CC hw/pci/pcie_port.o
CC hw/pci/pci-stub.o
CC hw/pcmcia/pcmcia.o
CC hw/scsi/scsi-disk.o
CC hw/scsi/scsi-generic.o
CC hw/scsi/scsi-bus.o
CC hw/scsi/lsi53c895a.o
CC hw/scsi/mptsas.o
CC hw/scsi/mptconfig.o
CC hw/scsi/mptendian.o
CC hw/scsi/megasas.o
CC hw/scsi/esp.o
CC hw/scsi/vmw_pvscsi.o
CC hw/scsi/esp-pci.o
CC hw/sd/pl181.o
CC hw/sd/ssi-sd.o
CC hw/sd/sd.o
CC hw/sd/core.o
CC hw/sd/sdhci.o
CC hw/smbios/smbios.o
CC hw/smbios/smbios_type_38.o
CC hw/smbios/smbios-stub.o
CC hw/smbios/smbios_type_38-stub.o
CC hw/ssi/pl022.o
CC hw/ssi/ssi.o
CC hw/ssi/xilinx_spi.o
CC hw/ssi/xilinx_spips.o
CC hw/ssi/aspeed_smc.o
CC hw/ssi/stm32f2xx_spi.o
CC hw/ssi/mss-spi.o
CC hw/timer/arm_timer.o
CC hw/timer/arm_mptimer.o
CC hw/timer/armv7m_systick.o
CC hw/timer/a9gtimer.o
CC hw/timer/cadence_ttc.o
CC hw/timer/ds1338.o
CC hw/timer/hpet.o
CC hw/timer/i8254.o
CC hw/timer/i8254_common.o
CC hw/timer/m48t59.o
CC hw/timer/m48t59-isa.o
CC hw/timer/pl031.o
CC hw/timer/puv3_ost.o
CC hw/timer/twl92230.o
CC hw/timer/xilinx_timer.o
CC hw/timer/slavio_timer.o
CC hw/timer/etraxfs_timer.o
CC hw/timer/grlib_gptimer.o
CC hw/timer/imx_epit.o
CC hw/timer/imx_gpt.o
CC hw/timer/lm32_timer.o
CC hw/timer/milkymist-sysctl.o
CC hw/timer/stm32f2xx_timer.o
CC hw/timer/aspeed_timer.o
CC hw/timer/sun4v-rtc.o
CC hw/timer/mss-timer.o
CC hw/timer/cmsdk-apb-timer.o
CC hw/tpm/tpm_tis.o
CC hw/tpm/tpm_emulator.o
CC hw/tpm/tpm_util.o
CC hw/usb/core.o
CC hw/usb/combined-packet.o
CC hw/usb/bus.o
CC hw/usb/libhw.o
CC hw/usb/desc.o
CC hw/usb/desc-msos.o
CC hw/usb/hcd-uhci.o
CC hw/usb/hcd-ohci.o
CC hw/usb/hcd-ehci.o
CC hw/usb/hcd-ehci-pci.o
CC hw/usb/hcd-ehci-sysbus.o
CC hw/usb/hcd-xhci.o
CC hw/usb/hcd-xhci-nec.o
CC hw/usb/hcd-musb.o
CC hw/usb/dev-hub.o
CC hw/usb/dev-hid.o
CC hw/usb/dev-wacom.o
CC hw/usb/dev-storage.o
CC hw/usb/dev-uas.o
CC hw/usb/dev-audio.o
CC hw/usb/dev-serial.o
CC hw/usb/dev-network.o
CC hw/usb/dev-bluetooth.o
CC hw/usb/dev-smartcard-reader.o
CC hw/usb/ccid-card-passthru.o
CC hw/usb/ccid-card-emulated.o
CC hw/usb/dev-mtp.o
CC hw/usb/redirect.o
CC hw/usb/quirks.o
CC hw/usb/host-libusb.o
CC hw/usb/host-legacy.o
CC hw/usb/host-stub.o
CC hw/virtio/virtio-rng.o
CC hw/virtio/virtio-pci.o
CC hw/virtio/virtio-bus.o
CC hw/virtio/virtio-mmio.o
CC hw/virtio/vhost-stub.o
CC hw/watchdog/watchdog.o
CC hw/watchdog/wdt_i6300esb.o
CC hw/watchdog/wdt_ib700.o
CC hw/watchdog/wdt_diag288.o
CC hw/watchdog/wdt_aspeed.o
CC migration/migration.o
CC migration/socket.o
CC migration/fd.o
CC migration/exec.o
CC migration/tls.o
CC migration/channel.o
CC migration/savevm.o
CC migration/colo-comm.o
CC migration/colo-failover.o
CC migration/colo.o
CC migration/vmstate.o
CC migration/vmstate-types.o
CC migration/page_cache.o
CC migration/qemu-file.o
CC migration/global_state.o
CC migration/qemu-file-channel.o
CC migration/xbzrle.o
CC migration/postcopy-ram.o
CC migration/qjson.o
CC migration/block.o
CC net/net.o
CC net/queue.o
CC net/checksum.o
CC net/util.o
CC net/hub.o
CC net/socket.o
CC net/dump.o
CC net/eth.o
CC net/l2tpv3.o
CC net/vhost-user.o
CC net/slirp.o
CC net/filter-buffer.o
CC net/filter.o
CC net/filter-mirror.o
CC net/colo.o
CC net/colo-compare.o
CC net/filter-rewriter.o
CC net/filter-replay.o
CC net/tap.o
CC net/tap-linux.o
CC qom/cpu.o
CC replay/replay.o
CC replay/replay-internal.o
CC replay/replay-events.o
CC replay/replay-time.o
CC replay/replay-input.o
CC replay/replay-char.o
CC replay/replay-snapshot.o
CC replay/replay-net.o
CC replay/replay-audio.o
CC slirp/cksum.o
CC slirp/if.o
CC slirp/ip_icmp.o
CC slirp/ip6_icmp.o
CC slirp/ip6_input.o
CC slirp/ip6_output.o
CC slirp/ip_input.o
CC slirp/ip_output.o
CC slirp/dnssearch.o
CC slirp/dhcpv6.o
CC slirp/slirp.o
CC slirp/mbuf.o
CC slirp/misc.o
CC slirp/sbuf.o
CC slirp/socket.o
CC slirp/tcp_input.o
CC slirp/tcp_output.o
CC slirp/tcp_subr.o
CC slirp/tcp_timer.o
CC slirp/udp.o
CC slirp/udp6.o
CC slirp/bootp.o
CC slirp/tftp.o
CC slirp/arp_table.o
CC slirp/ndp_table.o
CC slirp/ncsi.o
CC ui/keymaps.o
CC ui/console.o
CC ui/cursor.o
CC ui/qemu-pixman.o
CC ui/input.o
CC ui/input-legacy.o
CC ui/input-linux.o
CC ui/sdl2.o
CC ui/sdl2-input.o
CC ui/sdl2-gl.o
CC ui/sdl2-2d.o
CC ui/x_keymap.o
CC ui/curses.o
CC ui/vnc.o
CC ui/vnc-enc-zlib.o
CC ui/vnc-enc-hextile.o
CC ui/vnc-enc-tight.o
CC ui/vnc-palette.o
CC ui/vnc-enc-zrle.o
CC ui/vnc-auth-vencrypt.o
CC ui/vnc-auth-sasl.o
CC ui/vnc-ws.o
CC ui/vnc-jobs.o
CC ui/gtk.o
VERT ui/shader/texture-blit-vert.h
VERT ui/shader/texture-blit-flip-vert.h
FRAG ui/shader/texture-blit-frag.h
CC ui/console-gl.o
CC ui/egl-helpers.o
CC ui/egl-context.o
CC ui/egl-headless.o
CC ui/gtk-gl-area.o
CC chardev/char.o
CC chardev/char-fd.o
CC chardev/char-fe.o
CC chardev/char-file.o
CC chardev/char-io.o
CC chardev/char-mux.o
CC chardev/char-null.o
CC chardev/char-parallel.o
CC chardev/char-pipe.o
CC chardev/char-pty.o
CC chardev/char-ringbuf.o
CC chardev/char-serial.o
CC chardev/char-socket.o
CC chardev/char-stdio.o
CC chardev/char-udp.o
LINK tests/qemu-iotests/socket_scm_helper
CCAS s390-ccw/start.o
CC s390-ccw/main.o
GEN qemu-doc.html
CC s390-ccw/bootmap.o
CC s390-ccw/sclp.o
CC s390-ccw/virtio.o
GEN qemu-doc.txt
GEN qemu.1
CC s390-ccw/virtio-scsi.o
CC s390-ccw/virtio-blkdev.o
s390-netboot.img not built since roms/SLOF/ is not available.
GEN docs/interop/qemu-qmp-ref.html
BUILD s390-ccw/s390-ccw.elf
STRIP s390-ccw/s390-ccw.img
GEN docs/interop/qemu-qmp-ref.txt
GEN docs/interop/qemu-qmp-ref.7
GEN docs/interop/qemu-ga-ref.html
GEN docs/interop/qemu-ga-ref.txt
GEN docs/interop/qemu-ga-ref.7
CC qga/commands.o
CC qga/guest-agent-command-state.o
CC qga/main.o
CC qga/commands-posix.o
CC qga/channel-posix.o
CC qga/qapi-generated/qga-qapi-types.o
CC qga/qapi-generated/qga-qapi-visit.o
CC qga/qapi-generated/qga-qmp-marshal.o
AR libqemuutil.a
CC qemu-img.o
LINK qemu-io
LINK fsdev/virtfs-proxy-helper
LINK scsi/qemu-pr-helper
LINK qemu-bridge-helper
CC ui/shader.o
LINK qemu-ga
LINK qemu-keymap
LINK ivshmem-client
LINK ivshmem-server
LINK qemu-nbd
GEN aarch64-softmmu/hmp-commands.h
GEN alpha-softmmu/hmp-commands.h
GEN aarch64-softmmu/hmp-commands-info.h
GEN alpha-softmmu/hmp-commands-info.h
GEN aarch64-softmmu/config-target.h
GEN alpha-softmmu/config-target.h
CC alpha-softmmu/exec.o
CC aarch64-softmmu/exec.o
GEN arm-softmmu/hmp-commands.h
GEN cris-softmmu/hmp-commands.h
GEN arm-softmmu/hmp-commands-info.h
GEN arm-softmmu/config-target.h
GEN cris-softmmu/hmp-commands-info.h
GEN cris-softmmu/config-target.h
CC arm-softmmu/exec.o
CC cris-softmmu/exec.o
CC alpha-softmmu/tcg/tcg.o
CC aarch64-softmmu/tcg/tcg.o
CC arm-softmmu/tcg/tcg.o
CC cris-softmmu/tcg/tcg.o
CC alpha-softmmu/tcg/tcg-op.o
CC aarch64-softmmu/tcg/tcg-op.o
CC cris-softmmu/tcg/tcg-op.o
CC arm-softmmu/tcg/tcg-op.o
CC alpha-softmmu/tcg/optimize.o
CC cris-softmmu/tcg/optimize.o
CC aarch64-softmmu/tcg/optimize.o
CC arm-softmmu/tcg/optimize.o
CC alpha-softmmu/tcg/tcg-common.o
CC cris-softmmu/tcg/tcg-common.o
CC alpha-softmmu/fpu/softfloat.o
CC cris-softmmu/fpu/softfloat.o
CC arm-softmmu/tcg/tcg-common.o
CC aarch64-softmmu/tcg/tcg-common.o
CC aarch64-softmmu/fpu/softfloat.o
CC arm-softmmu/fpu/softfloat.o
CC alpha-softmmu/disas.o
CC aarch64-softmmu/disas.o
CC cris-softmmu/disas.o
CC alpha-softmmu/arch_init.o
GEN aarch64-softmmu/gdbstub-xml.c
CC alpha-softmmu/cpus.o
CC cris-softmmu/arch_init.o
CC arm-softmmu/disas.o
CC cris-softmmu/cpus.o
GEN arm-softmmu/gdbstub-xml.c
CC arm-softmmu/arch_init.o
CC alpha-softmmu/monitor.o
CC aarch64-softmmu/arch_init.o
CC arm-softmmu/cpus.o
CC cris-softmmu/monitor.o
CC aarch64-softmmu/cpus.o
CC arm-softmmu/monitor.o
CC aarch64-softmmu/monitor.o
CC alpha-softmmu/gdbstub.o
CC cris-softmmu/gdbstub.o
CC alpha-softmmu/balloon.o
CC alpha-softmmu/ioport.o
CC arm-softmmu/gdbstub.o
CC cris-softmmu/balloon.o
CC aarch64-softmmu/gdbstub.o
CC alpha-softmmu/numa.o
CC cris-softmmu/ioport.o
CC arm-softmmu/balloon.o
CC alpha-softmmu/qtest.o
CC aarch64-softmmu/balloon.o
CC cris-softmmu/numa.o
CC arm-softmmu/ioport.o
CC aarch64-softmmu/ioport.o
CC arm-softmmu/numa.o
CC alpha-softmmu/memory.o
CC cris-softmmu/qtest.o
CC aarch64-softmmu/numa.o
CC arm-softmmu/qtest.o
CC arm-softmmu/memory.o
CC aarch64-softmmu/qtest.o
CC cris-softmmu/memory.o
CC alpha-softmmu/memory_mapping.o
CC aarch64-softmmu/memory.o
CC alpha-softmmu/dump.o
CC arm-softmmu/memory_mapping.o
CC cris-softmmu/memory_mapping.o
CC arm-softmmu/dump.o
CC alpha-softmmu/migration/ram.o
CC cris-softmmu/dump.o
CC aarch64-softmmu/memory_mapping.o
CC arm-softmmu/migration/ram.o
CC cris-softmmu/migration/ram.o
CC aarch64-softmmu/dump.o
CC alpha-softmmu/accel/accel.o
CC arm-softmmu/accel/accel.o
CC aarch64-softmmu/migration/ram.o
CC alpha-softmmu/accel/stubs/hax-stub.o
CC cris-softmmu/accel/accel.o
CC arm-softmmu/accel/stubs/hax-stub.o
CC cris-softmmu/accel/stubs/hax-stub.o
CC alpha-softmmu/accel/stubs/kvm-stub.o
CC arm-softmmu/accel/stubs/kvm-stub.o
CC cris-softmmu/accel/stubs/kvm-stub.o
CC alpha-softmmu/accel/tcg/tcg-all.o
CC arm-softmmu/accel/tcg/tcg-all.o
CC cris-softmmu/accel/tcg/tcg-all.o
CC alpha-softmmu/accel/tcg/cputlb.o
CC aarch64-softmmu/accel/accel.o
CC arm-softmmu/accel/tcg/cputlb.o
CC cris-softmmu/accel/tcg/cputlb.o
CC aarch64-softmmu/accel/stubs/hax-stub.o
CC aarch64-softmmu/accel/stubs/kvm-stub.o
CC alpha-softmmu/accel/tcg/tcg-runtime.o
CC aarch64-softmmu/accel/tcg/tcg-all.o
CC aarch64-softmmu/accel/tcg/cputlb.o
CC arm-softmmu/accel/tcg/tcg-runtime.o
CC cris-softmmu/accel/tcg/tcg-runtime.o
CC alpha-softmmu/accel/tcg/cpu-exec.o
CC cris-softmmu/accel/tcg/cpu-exec.o
CC arm-softmmu/accel/tcg/cpu-exec.o
CC alpha-softmmu/accel/tcg/cpu-exec-common.o
CC cris-softmmu/accel/tcg/cpu-exec-common.o
CC cris-softmmu/accel/tcg/translate-all.o
CC alpha-softmmu/accel/tcg/translate-all.o
CC arm-softmmu/accel/tcg/cpu-exec-common.o
CC aarch64-softmmu/accel/tcg/tcg-runtime.o
CC cris-softmmu/accel/tcg/translator.o
CC alpha-softmmu/accel/tcg/translator.o
CC arm-softmmu/accel/tcg/translate-all.o
CC cris-softmmu/hw/core/generic-loader.o
CC aarch64-softmmu/accel/tcg/cpu-exec.o
CC alpha-softmmu/hw/9pfs/virtio-9p-device.o
CC arm-softmmu/accel/tcg/translator.o
CC cris-softmmu/hw/core/null-machine.o
CC alpha-softmmu/hw/block/virtio-blk.o
CC aarch64-softmmu/accel/tcg/cpu-exec-common.o
CC cris-softmmu/hw/misc/mmio_interface.o
CC alpha-softmmu/hw/block/dataplane/virtio-blk.o
CC arm-softmmu/hw/9pfs/virtio-9p-device.o
CC cris-softmmu/hw/net/etraxfs_eth.o
CC aarch64-softmmu/accel/tcg/translate-all.o
CC arm-softmmu/hw/adc/stm32f2xx_adc.o
CC alpha-softmmu/hw/char/virtio-serial-bus.o
CC cris-softmmu/hw/net/vhost_net.o
CC arm-softmmu/hw/block/virtio-blk.o
CC cris-softmmu/hw/net/rocker/qmp-norocker.o
CC aarch64-softmmu/accel/tcg/translator.o
CC alpha-softmmu/hw/core/generic-loader.o
CC arm-softmmu/hw/block/dataplane/virtio-blk.o
CC cris-softmmu/hw/vfio/common.o
CC aarch64-softmmu/hw/9pfs/virtio-9p-device.o
CC alpha-softmmu/hw/core/null-machine.o
CC alpha-softmmu/hw/display/vga.o
CC arm-softmmu/hw/char/exynos4210_uart.o
CC aarch64-softmmu/hw/adc/stm32f2xx_adc.o
CC cris-softmmu/hw/vfio/platform.o
CC arm-softmmu/hw/char/omap_uart.o
CC cris-softmmu/hw/vfio/spapr.o
CC aarch64-softmmu/hw/block/virtio-blk.o
CC arm-softmmu/hw/char/digic-uart.o
CC cris-softmmu/hw/cris/boot.o
CC arm-softmmu/hw/char/stm32f2xx_usart.o
CC aarch64-softmmu/hw/block/dataplane/virtio-blk.o
CC alpha-softmmu/hw/display/virtio-gpu.o
CC cris-softmmu/hw/cris/axis_dev88.o
CC arm-softmmu/hw/char/bcm2835_aux.o
CC aarch64-softmmu/hw/char/exynos4210_uart.o
CC arm-softmmu/hw/char/virtio-serial-bus.o
CC cris-softmmu/target/cris/translate.o
CC aarch64-softmmu/hw/char/omap_uart.o
CC alpha-softmmu/hw/display/virtio-gpu-3d.o
CC arm-softmmu/hw/core/generic-loader.o
CC aarch64-softmmu/hw/char/digic-uart.o
CC arm-softmmu/hw/core/null-machine.o
CC aarch64-softmmu/hw/char/stm32f2xx_usart.o
CC aarch64-softmmu/hw/char/bcm2835_aux.o
CC alpha-softmmu/hw/display/virtio-gpu-pci.o
CC arm-softmmu/hw/cpu/arm11mpcore.o
CC aarch64-softmmu/hw/char/virtio-serial-bus.o
CC arm-softmmu/hw/cpu/realview_mpcore.o
CC alpha-softmmu/hw/misc/ivshmem.o
CC alpha-softmmu/hw/misc/mmio_interface.o
CC cris-softmmu/target/cris/op_helper.o
CC arm-softmmu/hw/cpu/a9mpcore.o
CC aarch64-softmmu/hw/core/generic-loader.o
CC alpha-softmmu/hw/net/virtio-net.o
CC cris-softmmu/target/cris/helper.o
CC aarch64-softmmu/hw/core/null-machine.o
CC arm-softmmu/hw/cpu/a15mpcore.o
CC cris-softmmu/target/cris/cpu.o
CC aarch64-softmmu/hw/cpu/arm11mpcore.o
CC aarch64-softmmu/hw/cpu/realview_mpcore.o
CC arm-softmmu/hw/display/omap_dss.o
CC alpha-softmmu/hw/net/vhost_net.o
CC cris-softmmu/target/cris/gdbstub.o
CC aarch64-softmmu/hw/cpu/a9mpcore.o
CC cris-softmmu/target/cris/mmu.o
CC arm-softmmu/hw/display/omap_lcdc.o
CC alpha-softmmu/hw/scsi/virtio-scsi.o
CC aarch64-softmmu/hw/cpu/a15mpcore.o
CC cris-softmmu/target/cris/machine.o
CC arm-softmmu/hw/display/pxa2xx_lcd.o
CC alpha-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC aarch64-softmmu/hw/display/omap_dss.o
GEN trace/generated-helpers.c
CC cris-softmmu/trace/control-target.o
CC alpha-softmmu/hw/scsi/vhost-scsi-common.o
CC cris-softmmu/trace/generated-helpers.o
CC aarch64-softmmu/hw/display/omap_lcdc.o
CC alpha-softmmu/hw/scsi/vhost-scsi.o
LINK cris-softmmu/qemu-system-cris
CC aarch64-softmmu/hw/display/pxa2xx_lcd.o
CC arm-softmmu/hw/display/bcm2835_fb.o
CC alpha-softmmu/hw/scsi/vhost-user-scsi.o
CC alpha-softmmu/hw/timer/mc146818rtc.o
CC arm-softmmu/hw/display/vga.o
CC alpha-softmmu/hw/vfio/common.o
CC aarch64-softmmu/hw/display/bcm2835_fb.o
CC alpha-softmmu/hw/vfio/pci.o
CC aarch64-softmmu/hw/display/vga.o
CC arm-softmmu/hw/display/virtio-gpu.o
CC aarch64-softmmu/hw/display/virtio-gpu.o
CC alpha-softmmu/hw/vfio/pci-quirks.o
CC arm-softmmu/hw/display/virtio-gpu-3d.o
CC aarch64-softmmu/hw/display/virtio-gpu-3d.o
GEN i386-softmmu/hmp-commands.h
GEN i386-softmmu/hmp-commands-info.h
GEN i386-softmmu/config-target.h
CC alpha-softmmu/hw/vfio/platform.o
CC arm-softmmu/hw/display/virtio-gpu-pci.o
CC i386-softmmu/exec.o
CC aarch64-softmmu/hw/display/virtio-gpu-pci.o
CC alpha-softmmu/hw/vfio/spapr.o
CC arm-softmmu/hw/dma/omap_dma.o
CC aarch64-softmmu/hw/display/dpcd.o
CC alpha-softmmu/hw/virtio/virtio.o
CC arm-softmmu/hw/dma/soc_dma.o
CC aarch64-softmmu/hw/display/xlnx_dp.o
CC arm-softmmu/hw/dma/pxa2xx_dma.o
CC aarch64-softmmu/hw/dma/xlnx_dpdma.o
CC i386-softmmu/tcg/tcg.o
CC alpha-softmmu/hw/virtio/virtio-balloon.o
CC aarch64-softmmu/hw/dma/omap_dma.o
CC alpha-softmmu/hw/virtio/vhost.o
CC arm-softmmu/hw/dma/bcm2835_dma.o
CC arm-softmmu/hw/gpio/omap_gpio.o
CC alpha-softmmu/hw/virtio/vhost-backend.o
CC aarch64-softmmu/hw/dma/soc_dma.o
CC alpha-softmmu/hw/virtio/vhost-user.o
CC arm-softmmu/hw/gpio/imx_gpio.o
CC aarch64-softmmu/hw/dma/pxa2xx_dma.o
CC arm-softmmu/hw/gpio/bcm2835_gpio.o
CC alpha-softmmu/hw/virtio/vhost-vsock.o
CC aarch64-softmmu/hw/dma/bcm2835_dma.o
CC i386-softmmu/tcg/tcg-op.o
CC arm-softmmu/hw/i2c/omap_i2c.o
CC aarch64-softmmu/hw/gpio/omap_gpio.o
CC alpha-softmmu/hw/virtio/virtio-crypto.o
CC arm-softmmu/hw/input/pxa2xx_keypad.o
CC aarch64-softmmu/hw/gpio/imx_gpio.o
CC alpha-softmmu/hw/virtio/virtio-crypto-pci.o
CC arm-softmmu/hw/input/tsc210x.o
CC alpha-softmmu/hw/alpha/dp264.o
CC aarch64-softmmu/hw/gpio/bcm2835_gpio.o
CC alpha-softmmu/hw/alpha/pci.o
CC aarch64-softmmu/hw/i2c/omap_i2c.o
CC arm-softmmu/hw/intc/armv7m_nvic.o
CC i386-softmmu/tcg/optimize.o
CC aarch64-softmmu/hw/input/pxa2xx_keypad.o
CC alpha-softmmu/hw/alpha/typhoon.o
CC aarch64-softmmu/hw/input/tsc210x.o
CC alpha-softmmu/target/alpha/machine.o
CC arm-softmmu/hw/intc/exynos4210_gic.o
CC alpha-softmmu/target/alpha/translate.o
CC arm-softmmu/hw/intc/exynos4210_combiner.o
CC aarch64-softmmu/hw/intc/armv7m_nvic.o
CC i386-softmmu/tcg/tcg-common.o
CC arm-softmmu/hw/intc/omap_intc.o
CC i386-softmmu/fpu/softfloat.o
CC aarch64-softmmu/hw/intc/exynos4210_gic.o
CC arm-softmmu/hw/intc/bcm2835_ic.o
CC aarch64-softmmu/hw/intc/exynos4210_combiner.o
CC arm-softmmu/hw/intc/bcm2836_control.o
CC alpha-softmmu/target/alpha/helper.o
CC aarch64-softmmu/hw/intc/omap_intc.o
CC alpha-softmmu/target/alpha/cpu.o
CC arm-softmmu/hw/intc/allwinner-a10-pic.o
CC alpha-softmmu/target/alpha/int_helper.o
CC aarch64-softmmu/hw/intc/bcm2835_ic.o
CC arm-softmmu/hw/intc/aspeed_vic.o
CC aarch64-softmmu/hw/intc/bcm2836_control.o
CC alpha-softmmu/target/alpha/fpu_helper.o
CC arm-softmmu/hw/intc/arm_gicv3_cpuif.o
CC aarch64-softmmu/hw/intc/allwinner-a10-pic.o
CC alpha-softmmu/target/alpha/vax_helper.o
CC aarch64-softmmu/hw/intc/aspeed_vic.o
CC aarch64-softmmu/hw/intc/arm_gicv3_cpuif.o
CC i386-softmmu/disas.o
CC alpha-softmmu/target/alpha/sys_helper.o
CC alpha-softmmu/target/alpha/mem_helper.o
CC arm-softmmu/hw/misc/ivshmem.o
GEN i386-softmmu/gdbstub-xml.c
CC i386-softmmu/arch_init.o
CC alpha-softmmu/target/alpha/gdbstub.o
CC arm-softmmu/hw/misc/arm_sysctl.o
GEN trace/generated-helpers.c
CC alpha-softmmu/trace/control-target.o
CC i386-softmmu/cpus.o
CC aarch64-softmmu/hw/misc/ivshmem.o
CC arm-softmmu/hw/misc/cbus.o
CC alpha-softmmu/trace/generated-helpers.o
CC aarch64-softmmu/hw/misc/arm_sysctl.o
CC arm-softmmu/hw/misc/exynos4210_pmu.o
CC i386-softmmu/monitor.o
CC arm-softmmu/hw/misc/exynos4210_clk.o
CC aarch64-softmmu/hw/misc/cbus.o
LINK alpha-softmmu/qemu-system-alpha
CC aarch64-softmmu/hw/misc/exynos4210_pmu.o
CC arm-softmmu/hw/misc/exynos4210_rng.o
CC arm-softmmu/hw/misc/imx_ccm.o
CC aarch64-softmmu/hw/misc/exynos4210_clk.o
CC aarch64-softmmu/hw/misc/exynos4210_rng.o
CC arm-softmmu/hw/misc/imx31_ccm.o
CC aarch64-softmmu/hw/misc/imx_ccm.o
CC arm-softmmu/hw/misc/imx25_ccm.o
CC i386-softmmu/gdbstub.o
CC aarch64-softmmu/hw/misc/imx31_ccm.o
CC arm-softmmu/hw/misc/imx6_ccm.o
CC aarch64-softmmu/hw/misc/imx25_ccm.o
CC aarch64-softmmu/hw/misc/imx6_ccm.o
CC i386-softmmu/balloon.o
GEN lm32-softmmu/hmp-commands.h
CC arm-softmmu/hw/misc/imx6_src.o
GEN lm32-softmmu/hmp-commands-info.h
GEN lm32-softmmu/config-target.h
CC lm32-softmmu/exec.o
CC aarch64-softmmu/hw/misc/imx6_src.o
CC i386-softmmu/ioport.o
CC arm-softmmu/hw/misc/mst_fpga.o
CC aarch64-softmmu/hw/misc/mst_fpga.o
CC i386-softmmu/numa.o
CC arm-softmmu/hw/misc/omap_clk.o
CC aarch64-softmmu/hw/misc/omap_clk.o
CC arm-softmmu/hw/misc/omap_gpmc.o
CC i386-softmmu/qtest.o
CC aarch64-softmmu/hw/misc/omap_gpmc.o
CC arm-softmmu/hw/misc/omap_l4.o
CC i386-softmmu/memory.o
CC arm-softmmu/hw/misc/omap_sdrc.o
CC aarch64-softmmu/hw/misc/omap_l4.o
CC aarch64-softmmu/hw/misc/omap_sdrc.o
CC lm32-softmmu/tcg/tcg.o
CC aarch64-softmmu/hw/misc/omap_tap.o
CC arm-softmmu/hw/misc/omap_tap.o
CC arm-softmmu/hw/misc/bcm2835_mbox.o
CC aarch64-softmmu/hw/misc/bcm2835_mbox.o
CC arm-softmmu/hw/misc/bcm2835_property.o
CC i386-softmmu/memory_mapping.o
CC aarch64-softmmu/hw/misc/bcm2835_property.o
CC i386-softmmu/dump.o
CC arm-softmmu/hw/misc/bcm2835_rng.o
CC aarch64-softmmu/hw/misc/bcm2835_rng.o
CC arm-softmmu/hw/misc/zynq_slcr.o
CC aarch64-softmmu/hw/misc/zynq_slcr.o
CC lm32-softmmu/tcg/tcg-op.o
CC i386-softmmu/migration/ram.o
CC aarch64-softmmu/hw/misc/zynq-xadc.o
CC arm-softmmu/hw/misc/zynq-xadc.o
CC aarch64-softmmu/hw/misc/stm32f2xx_syscfg.o
CC arm-softmmu/hw/misc/stm32f2xx_syscfg.o
CC arm-softmmu/hw/misc/mps2-scc.o
CC aarch64-softmmu/hw/misc/mps2-scc.o
CC i386-softmmu/accel/accel.o
CC arm-softmmu/hw/misc/aspeed_scu.o
CC arm-softmmu/hw/misc/aspeed_sdmc.o
CC i386-softmmu/accel/stubs/hax-stub.o
CC aarch64-softmmu/hw/misc/auxbus.o
CC lm32-softmmu/tcg/optimize.o
CC aarch64-softmmu/hw/misc/aspeed_scu.o
CC arm-softmmu/hw/misc/mmio_interface.o
CC i386-softmmu/accel/stubs/kvm-stub.o
CC aarch64-softmmu/hw/misc/aspeed_sdmc.o
CC arm-softmmu/hw/misc/msf2-sysreg.o
CC i386-softmmu/accel/tcg/tcg-all.o
CC arm-softmmu/hw/net/virtio-net.o
CC lm32-softmmu/tcg/tcg-common.o
CC aarch64-softmmu/hw/misc/mmio_interface.o
CC i386-softmmu/accel/tcg/cputlb.o
CC lm32-softmmu/fpu/softfloat.o
CC aarch64-softmmu/hw/misc/msf2-sysreg.o
CC arm-softmmu/hw/net/vhost_net.o
CC aarch64-softmmu/hw/net/virtio-net.o
CC arm-softmmu/hw/pcmcia/pxa2xx.o
CC i386-softmmu/accel/tcg/tcg-runtime.o
CC arm-softmmu/hw/scsi/virtio-scsi.o
CC aarch64-softmmu/hw/net/vhost_net.o
CC i386-softmmu/accel/tcg/cpu-exec.o
CC aarch64-softmmu/hw/pcmcia/pxa2xx.o
CC arm-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC aarch64-softmmu/hw/scsi/virtio-scsi.o
CC i386-softmmu/accel/tcg/cpu-exec-common.o
CC arm-softmmu/hw/scsi/vhost-scsi-common.o
CC lm32-softmmu/disas.o
CC arm-softmmu/hw/scsi/vhost-scsi.o
CC aarch64-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC i386-softmmu/accel/tcg/translate-all.o
CC lm32-softmmu/arch_init.o
CC arm-softmmu/hw/scsi/vhost-user-scsi.o
CC aarch64-softmmu/hw/scsi/vhost-scsi-common.o
CC lm32-softmmu/cpus.o
CC arm-softmmu/hw/sd/omap_mmc.o
CC i386-softmmu/accel/tcg/translator.o
CC aarch64-softmmu/hw/scsi/vhost-scsi.o
CC arm-softmmu/hw/sd/pxa2xx_mmci.o
CC i386-softmmu/hw/9pfs/virtio-9p-device.o
CC lm32-softmmu/monitor.o
CC aarch64-softmmu/hw/scsi/vhost-user-scsi.o
CC arm-softmmu/hw/sd/bcm2835_sdhost.o
CC i386-softmmu/hw/block/virtio-blk.o
CC aarch64-softmmu/hw/sd/omap_mmc.o
CC arm-softmmu/hw/ssi/omap_spi.o
CC i386-softmmu/hw/block/dataplane/virtio-blk.o
CC aarch64-softmmu/hw/sd/pxa2xx_mmci.o
CC arm-softmmu/hw/ssi/imx_spi.o
CC i386-softmmu/hw/char/virtio-serial-bus.o
CC aarch64-softmmu/hw/sd/bcm2835_sdhost.o
CC arm-softmmu/hw/timer/exynos4210_mct.o
CC lm32-softmmu/gdbstub.o
CC arm-softmmu/hw/timer/exynos4210_pwm.o
CC aarch64-softmmu/hw/ssi/omap_spi.o
CC lm32-softmmu/balloon.o
CC i386-softmmu/hw/core/generic-loader.o
CC aarch64-softmmu/hw/ssi/imx_spi.o
CC arm-softmmu/hw/timer/exynos4210_rtc.o
CC lm32-softmmu/ioport.o
CC aarch64-softmmu/hw/timer/exynos4210_mct.o
CC i386-softmmu/hw/core/null-machine.o
CC lm32-softmmu/numa.o
CC arm-softmmu/hw/timer/omap_gptimer.o
CC i386-softmmu/hw/display/vga.o
CC aarch64-softmmu/hw/timer/exynos4210_pwm.o
CC lm32-softmmu/qtest.o
CC arm-softmmu/hw/timer/omap_synctimer.o
CC aarch64-softmmu/hw/timer/exynos4210_rtc.o
CC lm32-softmmu/memory.o
CC arm-softmmu/hw/timer/pxa2xx_timer.o
CC i386-softmmu/hw/display/virtio-gpu.o
CC aarch64-softmmu/hw/timer/omap_gptimer.o
CC arm-softmmu/hw/timer/digic-timer.o
CC aarch64-softmmu/hw/timer/omap_synctimer.o
CC arm-softmmu/hw/timer/allwinner-a10-pit.o
CC i386-softmmu/hw/display/virtio-gpu-3d.o
CC aarch64-softmmu/hw/timer/pxa2xx_timer.o
CC arm-softmmu/hw/usb/tusb6010.o
CC lm32-softmmu/memory_mapping.o
CC aarch64-softmmu/hw/timer/digic-timer.o
CC arm-softmmu/hw/vfio/common.o
CC i386-softmmu/hw/display/virtio-gpu-pci.o
CC aarch64-softmmu/hw/timer/allwinner-a10-pit.o
CC lm32-softmmu/dump.o
CC aarch64-softmmu/hw/usb/tusb6010.o
CC i386-softmmu/hw/display/virtio-vga.o
CC arm-softmmu/hw/vfio/pci.o
CC aarch64-softmmu/hw/vfio/common.o
CC lm32-softmmu/migration/ram.o
CC i386-softmmu/hw/intc/apic.o
CC aarch64-softmmu/hw/vfio/pci.o
CC lm32-softmmu/accel/accel.o
CC arm-softmmu/hw/vfio/pci-quirks.o
CC lm32-softmmu/accel/stubs/hax-stub.o
CC i386-softmmu/hw/intc/apic_common.o
CC lm32-softmmu/accel/stubs/kvm-stub.o
CC aarch64-softmmu/hw/vfio/pci-quirks.o
CC arm-softmmu/hw/vfio/platform.o
CC lm32-softmmu/accel/tcg/tcg-all.o
CC i386-softmmu/hw/intc/ioapic.o
CC lm32-softmmu/accel/tcg/cputlb.o
CC arm-softmmu/hw/vfio/calxeda-xgmac.o
CC aarch64-softmmu/hw/vfio/platform.o
CC i386-softmmu/hw/isa/lpc_ich9.o
CC arm-softmmu/hw/vfio/amd-xgbe.o
CC aarch64-softmmu/hw/vfio/calxeda-xgmac.o
CC i386-softmmu/hw/misc/vmport.o
CC arm-softmmu/hw/vfio/spapr.o
CC aarch64-softmmu/hw/vfio/amd-xgbe.o
CC i386-softmmu/hw/misc/ivshmem.o
CC aarch64-softmmu/hw/vfio/spapr.o
CC arm-softmmu/hw/virtio/virtio.o
CC lm32-softmmu/accel/tcg/tcg-runtime.o
CC lm32-softmmu/accel/tcg/cpu-exec.o
CC aarch64-softmmu/hw/virtio/virtio.o
CC i386-softmmu/hw/misc/pvpanic.o
CC lm32-softmmu/accel/tcg/cpu-exec-common.o
CC i386-softmmu/hw/misc/mmio_interface.o
CC arm-softmmu/hw/virtio/virtio-balloon.o
CC i386-softmmu/hw/net/virtio-net.o
CC lm32-softmmu/accel/tcg/translate-all.o
CC aarch64-softmmu/hw/virtio/virtio-balloon.o
CC arm-softmmu/hw/virtio/vhost.o
CC i386-softmmu/hw/net/vhost_net.o
CC lm32-softmmu/accel/tcg/translator.o
CC aarch64-softmmu/hw/virtio/vhost.o
CC i386-softmmu/hw/scsi/virtio-scsi.o
CC lm32-softmmu/hw/core/generic-loader.o
CC arm-softmmu/hw/virtio/vhost-backend.o
CC lm32-softmmu/hw/core/null-machine.o
CC aarch64-softmmu/hw/virtio/vhost-backend.o
CC lm32-softmmu/hw/input/milkymist-softusb.o
CC i386-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC arm-softmmu/hw/virtio/vhost-user.o
CC i386-softmmu/hw/scsi/vhost-scsi-common.o
CC aarch64-softmmu/hw/virtio/vhost-user.o
CC arm-softmmu/hw/virtio/vhost-vsock.o
CC lm32-softmmu/hw/misc/milkymist-hpdmc.o
CC i386-softmmu/hw/scsi/vhost-scsi.o
CC arm-softmmu/hw/virtio/virtio-crypto.o
CC aarch64-softmmu/hw/virtio/vhost-vsock.o
CC lm32-softmmu/hw/misc/milkymist-pfpu.o
CC i386-softmmu/hw/scsi/vhost-user-scsi.o
CC aarch64-softmmu/hw/virtio/virtio-crypto.o
CC lm32-softmmu/hw/misc/mmio_interface.o
CC i386-softmmu/hw/timer/mc146818rtc.o
CC arm-softmmu/hw/virtio/virtio-crypto-pci.o
CC lm32-softmmu/hw/net/milkymist-minimac2.o
CC aarch64-softmmu/hw/virtio/virtio-crypto-pci.o
CC i386-softmmu/hw/vfio/common.o
CC arm-softmmu/hw/arm/boot.o
CC lm32-softmmu/hw/net/vhost_net.o
CC aarch64-softmmu/hw/arm/boot.o
CC lm32-softmmu/hw/net/rocker/qmp-norocker.o
CC lm32-softmmu/hw/sd/milkymist-memcard.o
CC i386-softmmu/hw/vfio/pci.o
CC arm-softmmu/hw/arm/collie.o
CC lm32-softmmu/hw/vfio/common.o
CC aarch64-softmmu/hw/arm/collie.o
CC arm-softmmu/hw/arm/exynos4_boards.o
CC aarch64-softmmu/hw/arm/exynos4_boards.o
CC arm-softmmu/hw/arm/gumstix.o
CC lm32-softmmu/hw/vfio/platform.o
CC i386-softmmu/hw/vfio/pci-quirks.o
CC aarch64-softmmu/hw/arm/gumstix.o
CC arm-softmmu/hw/arm/highbank.o
CC lm32-softmmu/hw/vfio/spapr.o
CC aarch64-softmmu/hw/arm/highbank.o
CC i386-softmmu/hw/vfio/platform.o
CC arm-softmmu/hw/arm/digic_boards.o
CC lm32-softmmu/hw/lm32/lm32_boards.o
CC aarch64-softmmu/hw/arm/digic_boards.o
CC arm-softmmu/hw/arm/integratorcp.o
CC i386-softmmu/hw/vfio/spapr.o
CC lm32-softmmu/hw/lm32/milkymist.o
CC aarch64-softmmu/hw/arm/integratorcp.o
CC i386-softmmu/hw/virtio/virtio.o
CC arm-softmmu/hw/arm/mainstone.o
CC aarch64-softmmu/hw/arm/mainstone.o
CC lm32-softmmu/target/lm32/translate.o
CC arm-softmmu/hw/arm/musicpal.o
CC aarch64-softmmu/hw/arm/musicpal.o
CC i386-softmmu/hw/virtio/virtio-balloon.o
CC lm32-softmmu/target/lm32/op_helper.o
CC arm-softmmu/hw/arm/nseries.o
CC aarch64-softmmu/hw/arm/nseries.o
CC i386-softmmu/hw/virtio/vhost.o
CC lm32-softmmu/target/lm32/helper.o
CC i386-softmmu/hw/virtio/vhost-backend.o
CC aarch64-softmmu/hw/arm/omap_sx1.o
CC arm-softmmu/hw/arm/omap_sx1.o
CC lm32-softmmu/target/lm32/cpu.o
CC arm-softmmu/hw/arm/palm.o
CC lm32-softmmu/target/lm32/gdbstub.o
CC i386-softmmu/hw/virtio/vhost-user.o
CC aarch64-softmmu/hw/arm/palm.o
CC lm32-softmmu/target/lm32/lm32-semi.o
CC aarch64-softmmu/hw/arm/realview.o
CC arm-softmmu/hw/arm/realview.o
CC i386-softmmu/hw/virtio/vhost-vsock.o
CC lm32-softmmu/target/lm32/machine.o
CC i386-softmmu/hw/virtio/virtio-crypto.o
CC aarch64-softmmu/hw/arm/spitz.o
CC arm-softmmu/hw/arm/spitz.o
GEN trace/generated-helpers.c
CC lm32-softmmu/trace/control-target.o
CC i386-softmmu/hw/virtio/virtio-crypto-pci.o
CC aarch64-softmmu/hw/arm/stellaris.o
CC arm-softmmu/hw/arm/stellaris.o
CC lm32-softmmu/trace/generated-helpers.o
CC i386-softmmu/hw/i386/multiboot.o
LINK lm32-softmmu/qemu-system-lm32
CC aarch64-softmmu/hw/arm/tosa.o
CC arm-softmmu/hw/arm/tosa.o
CC i386-softmmu/hw/i386/pc.o
CC aarch64-softmmu/hw/arm/versatilepb.o
CC arm-softmmu/hw/arm/versatilepb.o
CC i386-softmmu/hw/i386/pc_piix.o
CC arm-softmmu/hw/arm/vexpress.o
CC aarch64-softmmu/hw/arm/vexpress.o
CC i386-softmmu/hw/i386/pc_q35.o
CC arm-softmmu/hw/arm/virt.o
CC aarch64-softmmu/hw/arm/virt.o
CC i386-softmmu/hw/i386/pc_sysfw.o
CC aarch64-softmmu/hw/arm/xilinx_zynq.o
CC i386-softmmu/hw/i386/x86-iommu.o
CC arm-softmmu/hw/arm/xilinx_zynq.o
GEN m68k-softmmu/hmp-commands.h
GEN m68k-softmmu/hmp-commands-info.h
GEN m68k-softmmu/config-target.h
CC i386-softmmu/hw/i386/intel_iommu.o
CC aarch64-softmmu/hw/arm/z2.o
CC m68k-softmmu/exec.o
CC arm-softmmu/hw/arm/z2.o
CC aarch64-softmmu/hw/arm/virt-acpi-build.o
CC arm-softmmu/hw/arm/virt-acpi-build.o
CC i386-softmmu/hw/i386/amd_iommu.o
CC arm-softmmu/hw/arm/netduino2.o
CC aarch64-softmmu/hw/arm/netduino2.o
CC aarch64-softmmu/hw/arm/sysbus-fdt.o
CC arm-softmmu/hw/arm/sysbus-fdt.o
CC i386-softmmu/hw/i386/kvmvapic.o
CC aarch64-softmmu/hw/arm/armv7m.o
CC m68k-softmmu/tcg/tcg.o
CC arm-softmmu/hw/arm/armv7m.o
CC i386-softmmu/hw/i386/acpi-build.o
CC aarch64-softmmu/hw/arm/exynos4210.o
CC arm-softmmu/hw/arm/exynos4210.o
CC aarch64-softmmu/hw/arm/pxa2xx.o
CC arm-softmmu/hw/arm/pxa2xx.o
CC i386-softmmu/hw/i386/pci-assign-load-rom.o
CC aarch64-softmmu/hw/arm/pxa2xx_gpio.o
CC m68k-softmmu/tcg/tcg-op.o
CC i386-softmmu/target/i386/helper.o
CC arm-softmmu/hw/arm/pxa2xx_gpio.o
CC aarch64-softmmu/hw/arm/pxa2xx_pic.o
CC arm-softmmu/hw/arm/pxa2xx_pic.o
CC i386-softmmu/target/i386/cpu.o
CC arm-softmmu/hw/arm/digic.o
CC aarch64-softmmu/hw/arm/digic.o
CC arm-softmmu/hw/arm/omap1.o
CC aarch64-softmmu/hw/arm/omap1.o
CC i386-softmmu/target/i386/gdbstub.o
CC m68k-softmmu/tcg/optimize.o
CC i386-softmmu/target/i386/xsave_helper.o
CC arm-softmmu/hw/arm/omap2.o
CC aarch64-softmmu/hw/arm/omap2.o
CC i386-softmmu/target/i386/translate.o
CC m68k-softmmu/tcg/tcg-common.o
CC m68k-softmmu/fpu/softfloat.o
CC arm-softmmu/hw/arm/strongarm.o
CC aarch64-softmmu/hw/arm/strongarm.o
CC aarch64-softmmu/hw/arm/allwinner-a10.o
CC arm-softmmu/hw/arm/allwinner-a10.o
CC aarch64-softmmu/hw/arm/cubieboard.o
CC arm-softmmu/hw/arm/cubieboard.o
CC aarch64-softmmu/hw/arm/bcm2835_peripherals.o
CC arm-softmmu/hw/arm/bcm2835_peripherals.o
CC aarch64-softmmu/hw/arm/bcm2836.o
CC m68k-softmmu/disas.o
CC arm-softmmu/hw/arm/bcm2836.o
GEN m68k-softmmu/gdbstub-xml.c
CC arm-softmmu/hw/arm/raspi.o
CC aarch64-softmmu/hw/arm/raspi.o
CC arm-softmmu/hw/arm/stm32f205_soc.o
CC m68k-softmmu/arch_init.o
CC aarch64-softmmu/hw/arm/stm32f205_soc.o
CC m68k-softmmu/cpus.o
CC aarch64-softmmu/hw/arm/xlnx-zynqmp.o
CC arm-softmmu/hw/arm/fsl-imx25.o
CC m68k-softmmu/monitor.o
CC arm-softmmu/hw/arm/imx25_pdk.o
CC aarch64-softmmu/hw/arm/xlnx-zcu102.o
CC arm-softmmu/hw/arm/fsl-imx31.o
CC aarch64-softmmu/hw/arm/fsl-imx25.o
CC arm-softmmu/hw/arm/kzm.o
CC aarch64-softmmu/hw/arm/imx25_pdk.o
CC i386-softmmu/target/i386/bpt_helper.o
CC arm-softmmu/hw/arm/fsl-imx6.o
CC aarch64-softmmu/hw/arm/fsl-imx31.o
CC m68k-softmmu/gdbstub.o
CC i386-softmmu/target/i386/cc_helper.o
CC arm-softmmu/hw/arm/sabrelite.o
CC aarch64-softmmu/hw/arm/kzm.o
CC m68k-softmmu/balloon.o
CC aarch64-softmmu/hw/arm/fsl-imx6.o
CC arm-softmmu/hw/arm/aspeed_soc.o
CC i386-softmmu/target/i386/excp_helper.o
CC m68k-softmmu/ioport.o
CC i386-softmmu/target/i386/fpu_helper.o
CC aarch64-softmmu/hw/arm/sabrelite.o
CC arm-softmmu/hw/arm/aspeed.o
CC m68k-softmmu/numa.o
CC aarch64-softmmu/hw/arm/aspeed_soc.o
CC arm-softmmu/hw/arm/mps2.o
CC m68k-softmmu/qtest.o
CC aarch64-softmmu/hw/arm/aspeed.o
CC arm-softmmu/hw/arm/msf2-soc.o
CC m68k-softmmu/memory.o
CC aarch64-softmmu/hw/arm/mps2.o
CC arm-softmmu/hw/arm/msf2-som.o
CC aarch64-softmmu/hw/arm/msf2-soc.o
CC arm-softmmu/target/arm/arm-semi.o
CC aarch64-softmmu/hw/arm/msf2-som.o
CC arm-softmmu/target/arm/machine.o
CC i386-softmmu/target/i386/int_helper.o
CC aarch64-softmmu/target/arm/arm-semi.o
CC m68k-softmmu/memory_mapping.o
CC arm-softmmu/target/arm/psci.o
CC m68k-softmmu/dump.o
CC i386-softmmu/target/i386/mem_helper.o
CC aarch64-softmmu/target/arm/machine.o
CC arm-softmmu/target/arm/arch_dump.o
CC i386-softmmu/target/i386/misc_helper.o
CC aarch64-softmmu/target/arm/psci.o
CC arm-softmmu/target/arm/monitor.o
CC m68k-softmmu/migration/ram.o
CC aarch64-softmmu/target/arm/arch_dump.o
CC arm-softmmu/target/arm/kvm-stub.o
CC i386-softmmu/target/i386/mpx_helper.o
CC aarch64-softmmu/target/arm/monitor.o
CC arm-softmmu/target/arm/translate.o
CC aarch64-softmmu/target/arm/kvm-stub.o
CC i386-softmmu/target/i386/seg_helper.o
CC m68k-softmmu/accel/accel.o
CC m68k-softmmu/accel/stubs/hax-stub.o
CC aarch64-softmmu/target/arm/translate.o
CC m68k-softmmu/accel/stubs/kvm-stub.o
CC m68k-softmmu/accel/tcg/tcg-all.o
CC m68k-softmmu/accel/tcg/cputlb.o
CC i386-softmmu/target/i386/smm_helper.o
CC i386-softmmu/target/i386/svm_helper.o
CC m68k-softmmu/accel/tcg/tcg-runtime.o
CC i386-softmmu/target/i386/machine.o
CC m68k-softmmu/accel/tcg/cpu-exec.o
CC i386-softmmu/target/i386/arch_memory_mapping.o
CC m68k-softmmu/accel/tcg/cpu-exec-common.o
CC i386-softmmu/target/i386/arch_dump.o
CC m68k-softmmu/accel/tcg/translate-all.o
CC i386-softmmu/target/i386/monitor.o
CC m68k-softmmu/accel/tcg/translator.o
CC m68k-softmmu/hw/char/mcf_uart.o
CC i386-softmmu/target/i386/kvm-stub.o
CC arm-softmmu/target/arm/op_helper.o
GEN trace/generated-helpers.c
CC m68k-softmmu/hw/core/generic-loader.o
CC i386-softmmu/trace/control-target.o
CC m68k-softmmu/hw/core/null-machine.o
CC m68k-softmmu/hw/misc/mmio_interface.o
CC i386-softmmu/gdbstub-xml.o
CC arm-softmmu/target/arm/helper.o
CC i386-softmmu/trace/generated-helpers.o
CC m68k-softmmu/hw/net/mcf_fec.o
CC aarch64-softmmu/target/arm/op_helper.o
LINK i386-softmmu/qemu-system-i386
CC m68k-softmmu/hw/net/vhost_net.o
CC m68k-softmmu/hw/net/rocker/qmp-norocker.o
CC m68k-softmmu/hw/vfio/common.o
CC aarch64-softmmu/target/arm/helper.o
CC m68k-softmmu/hw/vfio/platform.o
CC m68k-softmmu/hw/vfio/spapr.o
CC arm-softmmu/target/arm/cpu.o
CC m68k-softmmu/hw/m68k/an5206.o
CC m68k-softmmu/hw/m68k/mcf5208.o
GEN microblazeel-softmmu/hmp-commands.h
GEN microblazeel-softmmu/hmp-commands-info.h
GEN microblazeel-softmmu/config-target.h
CC arm-softmmu/target/arm/neon_helper.o
CC m68k-softmmu/hw/m68k/mcf5206.o
CC microblazeel-softmmu/exec.o
CC m68k-softmmu/hw/m68k/mcf_intc.o
CC m68k-softmmu/target/m68k/m68k-semi.o
CC aarch64-softmmu/target/arm/cpu.o
CC arm-softmmu/target/arm/iwmmxt_helper.o
CC m68k-softmmu/target/m68k/translate.o
CC aarch64-softmmu/target/arm/neon_helper.o
CC microblazeel-softmmu/tcg/tcg.o
CC arm-softmmu/target/arm/gdbstub.o
CC arm-softmmu/target/arm/crypto_helper.o
CC aarch64-softmmu/target/arm/iwmmxt_helper.o
CC arm-softmmu/target/arm/arm-powerctl.o
CC microblazeel-softmmu/tcg/tcg-op.o
GEN trace/generated-helpers.c
CC arm-softmmu/trace/control-target.o
CC aarch64-softmmu/target/arm/gdbstub.o
CC m68k-softmmu/target/m68k/op_helper.o
CC arm-softmmu/gdbstub-xml.o
CC aarch64-softmmu/target/arm/cpu64.o
CC arm-softmmu/trace/generated-helpers.o
CC m68k-softmmu/target/m68k/helper.o
LINK arm-softmmu/qemu-system-arm
CC aarch64-softmmu/target/arm/translate-a64.o
CC m68k-softmmu/target/m68k/cpu.o
CC microblazeel-softmmu/tcg/optimize.o
CC m68k-softmmu/target/m68k/fpu_helper.o
CC m68k-softmmu/target/m68k/gdbstub.o
CC microblazeel-softmmu/tcg/tcg-common.o
GEN trace/generated-helpers.c
CC m68k-softmmu/trace/control-target.o
CC microblazeel-softmmu/fpu/softfloat.o
CC m68k-softmmu/gdbstub-xml.o
CC m68k-softmmu/trace/generated-helpers.o
CC microblazeel-softmmu/disas.o
LINK m68k-softmmu/qemu-system-m68k
GEN microblaze-softmmu/hmp-commands.h
CC microblazeel-softmmu/arch_init.o
GEN microblaze-softmmu/hmp-commands-info.h
CC microblazeel-softmmu/cpus.o
GEN microblaze-softmmu/config-target.h
CC microblaze-softmmu/exec.o
CC aarch64-softmmu/target/arm/helper-a64.o
CC microblazeel-softmmu/monitor.o
CC aarch64-softmmu/target/arm/gdbstub64.o
CC aarch64-softmmu/target/arm/crypto_helper.o
GEN mips64el-softmmu/hmp-commands.h
GEN mips64el-softmmu/hmp-commands-info.h
GEN mips64el-softmmu/config-target.h
CC mips64el-softmmu/exec.o
CC aarch64-softmmu/target/arm/arm-powerctl.o
CC microblazeel-softmmu/gdbstub.o
GEN trace/generated-helpers.c
CC aarch64-softmmu/trace/control-target.o
CC microblaze-softmmu/tcg/tcg.o
CC aarch64-softmmu/gdbstub-xml.o
CC microblazeel-softmmu/balloon.o
CC microblazeel-softmmu/ioport.o
CC aarch64-softmmu/trace/generated-helpers.o
CC microblazeel-softmmu/numa.o
LINK aarch64-softmmu/qemu-system-aarch64
CC microblazeel-softmmu/qtest.o
CC mips64el-softmmu/tcg/tcg.o
CC microblaze-softmmu/tcg/tcg-op.o
CC microblazeel-softmmu/memory.o
CC microblaze-softmmu/tcg/optimize.o
CC mips64el-softmmu/tcg/tcg-op.o
CC microblazeel-softmmu/memory_mapping.o
CC microblazeel-softmmu/dump.o
CC microblaze-softmmu/tcg/tcg-common.o
CC microblazeel-softmmu/migration/ram.o
CC microblaze-softmmu/fpu/softfloat.o
CC mips64el-softmmu/tcg/optimize.o
CC microblazeel-softmmu/accel/accel.o
CC microblaze-softmmu/disas.o
CC microblazeel-softmmu/accel/stubs/hax-stub.o
CC microblazeel-softmmu/accel/stubs/kvm-stub.o
CC mips64el-softmmu/tcg/tcg-common.o
GEN mips64-softmmu/hmp-commands.h
CC microblazeel-softmmu/accel/tcg/tcg-all.o
GEN mips64-softmmu/hmp-commands-info.h
GEN mips64-softmmu/config-target.h
CC mips64el-softmmu/fpu/softfloat.o
CC mips64-softmmu/exec.o
CC microblazeel-softmmu/accel/tcg/cputlb.o
CC microblaze-softmmu/arch_init.o
CC microblaze-softmmu/cpus.o
CC microblazeel-softmmu/accel/tcg/tcg-runtime.o
CC mips64-softmmu/tcg/tcg.o
CC microblaze-softmmu/monitor.o
CC microblazeel-softmmu/accel/tcg/cpu-exec.o
CC mips64el-softmmu/disas.o
CC microblazeel-softmmu/accel/tcg/cpu-exec-common.o
CC mips64el-softmmu/arch_init.o
CC microblazeel-softmmu/accel/tcg/translate-all.o
CC mips64el-softmmu/cpus.o
CC microblaze-softmmu/gdbstub.o
CC microblazeel-softmmu/accel/tcg/translator.o
CC mips64el-softmmu/monitor.o
CC microblazeel-softmmu/hw/core/generic-loader.o
CC microblaze-softmmu/balloon.o
CC mips64-softmmu/tcg/tcg-op.o
CC microblazeel-softmmu/hw/core/null-machine.o
CC microblaze-softmmu/ioport.o
CC microblazeel-softmmu/hw/misc/mmio_interface.o
CC microblazeel-softmmu/hw/net/xilinx_ethlite.o
CC microblaze-softmmu/numa.o
CC mips64el-softmmu/gdbstub.o
CC microblaze-softmmu/qtest.o
CC microblazeel-softmmu/hw/net/vhost_net.o
CC microblazeel-softmmu/hw/net/rocker/qmp-norocker.o
CC mips64el-softmmu/balloon.o
CC mips64el-softmmu/ioport.o
CC microblaze-softmmu/memory.o
CC microblazeel-softmmu/hw/vfio/common.o
CC mips64-softmmu/tcg/optimize.o
CC mips64el-softmmu/numa.o
CC microblazeel-softmmu/hw/vfio/platform.o
CC mips64el-softmmu/qtest.o
CC mips64-softmmu/tcg/tcg-common.o
CC microblaze-softmmu/memory_mapping.o
CC mips64-softmmu/fpu/softfloat.o
CC microblazeel-softmmu/hw/vfio/spapr.o
CC microblaze-softmmu/dump.o
CC mips64el-softmmu/memory.o
CC microblazeel-softmmu/hw/microblaze/petalogix_s3adsp1800_mmu.o
CC microblazeel-softmmu/hw/microblaze/petalogix_ml605_mmu.o
CC microblaze-softmmu/migration/ram.o
CC microblazeel-softmmu/hw/microblaze/boot.o
CC mips64el-softmmu/memory_mapping.o
CC microblazeel-softmmu/target/microblaze/translate.o
CC mips64el-softmmu/dump.o
CC microblaze-softmmu/accel/accel.o
CC microblaze-softmmu/accel/stubs/hax-stub.o
CC mips64el-softmmu/migration/ram.o
CC mips64-softmmu/disas.o
CC microblaze-softmmu/accel/stubs/kvm-stub.o
CC mips64-softmmu/arch_init.o
CC microblaze-softmmu/accel/tcg/tcg-all.o
CC microblazeel-softmmu/target/microblaze/op_helper.o
CC mips64el-softmmu/accel/accel.o
CC microblaze-softmmu/accel/tcg/cputlb.o
CC mips64-softmmu/cpus.o
CC mips64el-softmmu/accel/stubs/hax-stub.o
CC microblazeel-softmmu/target/microblaze/helper.o
CC mips64el-softmmu/accel/stubs/kvm-stub.o
CC microblazeel-softmmu/target/microblaze/cpu.o
CC mips64el-softmmu/accel/tcg/tcg-all.o
CC mips64-softmmu/monitor.o
CC mips64el-softmmu/accel/tcg/cputlb.o
CC microblazeel-softmmu/target/microblaze/gdbstub.o
CC microblaze-softmmu/accel/tcg/tcg-runtime.o
CC microblazeel-softmmu/target/microblaze/mmu.o
GEN trace/generated-helpers.c
CC microblazeel-softmmu/trace/control-target.o
CC microblaze-softmmu/accel/tcg/cpu-exec.o
CC mips64-softmmu/gdbstub.o
CC microblazeel-softmmu/trace/generated-helpers.o
CC mips64el-softmmu/accel/tcg/tcg-runtime.o
CC microblaze-softmmu/accel/tcg/cpu-exec-common.o
LINK microblazeel-softmmu/qemu-system-microblazeel
CC microblaze-softmmu/accel/tcg/translate-all.o
CC mips64-softmmu/balloon.o
CC mips64el-softmmu/accel/tcg/cpu-exec.o
CC microblaze-softmmu/accel/tcg/translator.o
CC mips64el-softmmu/accel/tcg/cpu-exec-common.o
CC mips64-softmmu/ioport.o
CC mips64el-softmmu/accel/tcg/translate-all.o
CC microblaze-softmmu/hw/core/generic-loader.o
CC mips64-softmmu/numa.o
CC microblaze-softmmu/hw/core/null-machine.o
CC microblaze-softmmu/hw/misc/mmio_interface.o
CC mips64-softmmu/qtest.o
CC mips64el-softmmu/accel/tcg/translator.o
CC microblaze-softmmu/hw/net/xilinx_ethlite.o
CC mips64-softmmu/memory.o
GEN mipsel-softmmu/hmp-commands.h
GEN mipsel-softmmu/hmp-commands-info.h
GEN mipsel-softmmu/config-target.h
CC mipsel-softmmu/exec.o
CC microblaze-softmmu/hw/net/vhost_net.o
CC mips64el-softmmu/hw/9pfs/virtio-9p-device.o
CC microblaze-softmmu/hw/net/rocker/qmp-norocker.o
CC microblaze-softmmu/hw/vfio/common.o
CC mips64el-softmmu/hw/block/virtio-blk.o
CC mips64-softmmu/memory_mapping.o
CC microblaze-softmmu/hw/vfio/platform.o
CC mips64el-softmmu/hw/block/dataplane/virtio-blk.o
CC mips64-softmmu/dump.o
CC mips64el-softmmu/hw/char/virtio-serial-bus.o
CC microblaze-softmmu/hw/vfio/spapr.o
CC mipsel-softmmu/tcg/tcg.o
CC mips64el-softmmu/hw/core/generic-loader.o
CC mips64-softmmu/migration/ram.o
CC microblaze-softmmu/hw/microblaze/petalogix_s3adsp1800_mmu.o
CC mips64el-softmmu/hw/core/null-machine.o
CC microblaze-softmmu/hw/microblaze/petalogix_ml605_mmu.o
CC mips64el-softmmu/hw/display/vga.o
CC mips64-softmmu/accel/accel.o
CC microblaze-softmmu/hw/microblaze/boot.o
CC mips64-softmmu/accel/stubs/hax-stub.o
CC microblaze-softmmu/target/microblaze/translate.o
CC mips64-softmmu/accel/stubs/kvm-stub.o
CC mipsel-softmmu/tcg/tcg-op.o
CC mips64-softmmu/accel/tcg/tcg-all.o
CC mips64el-softmmu/hw/display/virtio-gpu.o
CC mips64-softmmu/accel/tcg/cputlb.o
CC mips64el-softmmu/hw/display/virtio-gpu-3d.o
CC microblaze-softmmu/target/microblaze/op_helper.o
CC mipsel-softmmu/tcg/optimize.o
CC mips64el-softmmu/hw/display/virtio-gpu-pci.o
CC microblaze-softmmu/target/microblaze/helper.o
CC mips64el-softmmu/hw/intc/mips_gic.o
CC mips64-softmmu/accel/tcg/tcg-runtime.o
CC microblaze-softmmu/target/microblaze/cpu.o
CC mips64-softmmu/accel/tcg/cpu-exec.o
CC mips64el-softmmu/hw/misc/ivshmem.o
CC microblaze-softmmu/target/microblaze/gdbstub.o
CC mipsel-softmmu/tcg/tcg-common.o
CC mips64-softmmu/accel/tcg/cpu-exec-common.o
CC microblaze-softmmu/target/microblaze/mmu.o
CC mips64el-softmmu/hw/misc/mips_cmgcr.o
CC mips64-softmmu/accel/tcg/translate-all.o
CC mipsel-softmmu/fpu/softfloat.o
GEN trace/generated-helpers.c
CC mips64el-softmmu/hw/misc/mips_cpc.o
CC microblaze-softmmu/trace/control-target.o
CC mips64el-softmmu/hw/misc/mips_itu.o
CC microblaze-softmmu/trace/generated-helpers.o
CC mips64-softmmu/accel/tcg/translator.o
LINK microblaze-softmmu/qemu-system-microblaze
CC mips64el-softmmu/hw/misc/mmio_interface.o
CC mips64el-softmmu/hw/net/virtio-net.o
CC mips64-softmmu/hw/9pfs/virtio-9p-device.o
CC mips64-softmmu/hw/block/virtio-blk.o
CC mips64el-softmmu/hw/net/vhost_net.o
CC mips64-softmmu/hw/block/dataplane/virtio-blk.o
CC mips64el-softmmu/hw/scsi/virtio-scsi.o
CC mips64-softmmu/hw/char/virtio-serial-bus.o
GEN mips-softmmu/hmp-commands.h
CC mipsel-softmmu/disas.o
GEN mips-softmmu/hmp-commands-info.h
GEN mips-softmmu/config-target.h
CC mips64el-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC mipsel-softmmu/arch_init.o
CC mips-softmmu/exec.o
CC mips64-softmmu/hw/core/generic-loader.o
CC mips64el-softmmu/hw/scsi/vhost-scsi-common.o
CC mipsel-softmmu/cpus.o
CC mips64el-softmmu/hw/scsi/vhost-scsi.o
CC mips64-softmmu/hw/core/null-machine.o
CC mips64-softmmu/hw/display/vga.o
CC mips64el-softmmu/hw/scsi/vhost-user-scsi.o
CC mipsel-softmmu/monitor.o
CC mips64el-softmmu/hw/timer/mips_gictimer.o
CC mips64el-softmmu/hw/timer/mc146818rtc.o
CC mips-softmmu/tcg/tcg.o
CC mips64-softmmu/hw/display/virtio-gpu.o
CC mips64el-softmmu/hw/vfio/common.o
CC mipsel-softmmu/gdbstub.o
CC mips64el-softmmu/hw/vfio/pci.o
CC mips64-softmmu/hw/display/virtio-gpu-3d.o
CC mipsel-softmmu/balloon.o
CC mips64el-softmmu/hw/vfio/pci-quirks.o
CC mipsel-softmmu/ioport.o
CC mips64-softmmu/hw/display/virtio-gpu-pci.o
CC mips-softmmu/tcg/tcg-op.o
CC mipsel-softmmu/numa.o
CC mips64el-softmmu/hw/vfio/platform.o
CC mips64-softmmu/hw/intc/mips_gic.o
CC mipsel-softmmu/qtest.o
CC mips64el-softmmu/hw/vfio/spapr.o
CC mipsel-softmmu/memory.o
CC mips64-softmmu/hw/misc/ivshmem.o
CC mips64el-softmmu/hw/virtio/virtio.o
CC mips64-softmmu/hw/misc/mips_cmgcr.o
CC mips-softmmu/tcg/optimize.o
CC mips64-softmmu/hw/misc/mips_cpc.o
CC mips64el-softmmu/hw/virtio/virtio-balloon.o
CC mips64-softmmu/hw/misc/mips_itu.o
CC mipsel-softmmu/memory_mapping.o
CC mips64el-softmmu/hw/virtio/vhost.o
CC mips64-softmmu/hw/misc/mmio_interface.o
CC mipsel-softmmu/dump.o
CC mips64-softmmu/hw/net/virtio-net.o
CC mips-softmmu/tcg/tcg-common.o
CC mips-softmmu/fpu/softfloat.o
CC mips64el-softmmu/hw/virtio/vhost-backend.o
CC mipsel-softmmu/migration/ram.o
CC mips64el-softmmu/hw/virtio/vhost-user.o
CC mips64-softmmu/hw/net/vhost_net.o
CC mips64-softmmu/hw/scsi/virtio-scsi.o
CC mips64el-softmmu/hw/virtio/vhost-vsock.o
CC mipsel-softmmu/accel/accel.o
CC mips64el-softmmu/hw/virtio/virtio-crypto.o
CC mips64-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC mipsel-softmmu/accel/stubs/hax-stub.o
CC mips64el-softmmu/hw/virtio/virtio-crypto-pci.o
CC mips64-softmmu/hw/scsi/vhost-scsi-common.o
CC mipsel-softmmu/accel/stubs/kvm-stub.o
CC mips64el-softmmu/hw/mips/mips_r4k.o
CC mips64-softmmu/hw/scsi/vhost-scsi.o
CC mipsel-softmmu/accel/tcg/tcg-all.o
CC mips64-softmmu/hw/scsi/vhost-user-scsi.o
CC mipsel-softmmu/accel/tcg/cputlb.o
CC mips-softmmu/disas.o
CC mips64el-softmmu/hw/mips/mips_malta.o
CC mips64-softmmu/hw/timer/mips_gictimer.o
CC mips-softmmu/arch_init.o
CC mips64-softmmu/hw/timer/mc146818rtc.o
CC mips64el-softmmu/hw/mips/mips_mipssim.o
CC mips-softmmu/cpus.o
CC mips64el-softmmu/hw/mips/addr.o
CC mips64-softmmu/hw/vfio/common.o
CC mipsel-softmmu/accel/tcg/tcg-runtime.o
CC mips64el-softmmu/hw/mips/mips_int.o
CC mips64-softmmu/hw/vfio/pci.o
CC mips-softmmu/monitor.o
CC mipsel-softmmu/accel/tcg/cpu-exec.o
CC mips64el-softmmu/hw/mips/mips_jazz.o
CC mipsel-softmmu/accel/tcg/cpu-exec-common.o
CC mips64el-softmmu/hw/mips/mips_fulong2e.o
CC mips64-softmmu/hw/vfio/pci-quirks.o
CC mipsel-softmmu/accel/tcg/translate-all.o
CC mips-softmmu/gdbstub.o
CC mips64el-softmmu/hw/mips/gt64xxx_pci.o
CC mipsel-softmmu/accel/tcg/translator.o
CC mips64-softmmu/hw/vfio/platform.o
CC mips64el-softmmu/hw/mips/cps.o
CC mips-softmmu/balloon.o
CC mips64-softmmu/hw/vfio/spapr.o
CC mips64el-softmmu/hw/mips/boston.o
CC mipsel-softmmu/hw/9pfs/virtio-9p-device.o
CC mips-softmmu/ioport.o
CC mips64-softmmu/hw/virtio/virtio.o
CC mipsel-softmmu/hw/block/virtio-blk.o
CC mips64el-softmmu/target/mips/translate.o
CC mips-softmmu/numa.o
CC mipsel-softmmu/hw/block/dataplane/virtio-blk.o
CC mips-softmmu/qtest.o
CC mips64-softmmu/hw/virtio/virtio-balloon.o
CC mipsel-softmmu/hw/char/virtio-serial-bus.o
CC mips64-softmmu/hw/virtio/vhost.o
CC mips-softmmu/memory.o
CC mipsel-softmmu/hw/core/generic-loader.o
CC mips64-softmmu/hw/virtio/vhost-backend.o
CC mipsel-softmmu/hw/core/null-machine.o
CC mips64-softmmu/hw/virtio/vhost-user.o
CC mipsel-softmmu/hw/display/vga.o
CC mips-softmmu/memory_mapping.o
CC mips64-softmmu/hw/virtio/vhost-vsock.o
CC mips-softmmu/dump.o
CC mips64-softmmu/hw/virtio/virtio-crypto.o
CC mipsel-softmmu/hw/display/virtio-gpu.o
CC mips64-softmmu/hw/virtio/virtio-crypto-pci.o
CC mips-softmmu/migration/ram.o
CC mips64-softmmu/hw/mips/mips_r4k.o
CC mipsel-softmmu/hw/display/virtio-gpu-3d.o
CC mips64-softmmu/hw/mips/mips_malta.o
CC mips-softmmu/accel/accel.o
CC mips-softmmu/accel/stubs/hax-stub.o
CC mipsel-softmmu/hw/display/virtio-gpu-pci.o
CC mips64-softmmu/hw/mips/mips_mipssim.o
CC mips-softmmu/accel/stubs/kvm-stub.o
CC mipsel-softmmu/hw/intc/mips_gic.o
CC mips64-softmmu/hw/mips/addr.o
CC mips-softmmu/accel/tcg/tcg-all.o
CC mipsel-softmmu/hw/misc/ivshmem.o
CC mips-softmmu/accel/tcg/cputlb.o
CC mips64-softmmu/hw/mips/mips_int.o
CC mips64-softmmu/hw/mips/mips_jazz.o
CC mipsel-softmmu/hw/misc/mips_cmgcr.o
CC mipsel-softmmu/hw/misc/mips_cpc.o
CC mips64-softmmu/hw/mips/gt64xxx_pci.o
CC mipsel-softmmu/hw/misc/mips_itu.o
CC mips64-softmmu/hw/mips/cps.o
CC mipsel-softmmu/hw/misc/mmio_interface.o
CC mips-softmmu/accel/tcg/tcg-runtime.o
CC mips64-softmmu/target/mips/translate.o
CC mipsel-softmmu/hw/net/virtio-net.o
CC mips-softmmu/accel/tcg/cpu-exec.o
CC mips-softmmu/accel/tcg/cpu-exec-common.o
CC mips64el-softmmu/target/mips/dsp_helper.o
CC mipsel-softmmu/hw/net/vhost_net.o
CC mips-softmmu/accel/tcg/translate-all.o
CC mipsel-softmmu/hw/scsi/virtio-scsi.o
CC mipsel-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC mips-softmmu/accel/tcg/translator.o
CC mipsel-softmmu/hw/scsi/vhost-scsi-common.o
CC mipsel-softmmu/hw/scsi/vhost-scsi.o
CC mips64el-softmmu/target/mips/op_helper.o
CC mips-softmmu/hw/9pfs/virtio-9p-device.o
CC mipsel-softmmu/hw/scsi/vhost-user-scsi.o
CC mipsel-softmmu/hw/timer/mips_gictimer.o
CC mips-softmmu/hw/block/virtio-blk.o
CC mipsel-softmmu/hw/timer/mc146818rtc.o
CC mips-softmmu/hw/block/dataplane/virtio-blk.o
CC mips-softmmu/hw/char/virtio-serial-bus.o
CC mipsel-softmmu/hw/vfio/common.o
CC mips64el-softmmu/target/mips/lmi_helper.o
CC mips-softmmu/hw/core/generic-loader.o
CC mipsel-softmmu/hw/vfio/pci.o
CC mips-softmmu/hw/core/null-machine.o
CC mips64el-softmmu/target/mips/helper.o
CC mips-softmmu/hw/display/vga.o
CC mipsel-softmmu/hw/vfio/pci-quirks.o
CC mips64el-softmmu/target/mips/cpu.o
CC mipsel-softmmu/hw/vfio/platform.o
CC mips-softmmu/hw/display/virtio-gpu.o
CC mips64el-softmmu/target/mips/gdbstub.o
CC mipsel-softmmu/hw/vfio/spapr.o
CC mips64el-softmmu/target/mips/msa_helper.o
CC mips-softmmu/hw/display/virtio-gpu-3d.o
CC mipsel-softmmu/hw/virtio/virtio.o
CC mips-softmmu/hw/display/virtio-gpu-pci.o
CC mipsel-softmmu/hw/virtio/virtio-balloon.o
CC mips64-softmmu/target/mips/dsp_helper.o
CC mips-softmmu/hw/intc/mips_gic.o
CC mipsel-softmmu/hw/virtio/vhost.o
CC mips-softmmu/hw/misc/ivshmem.o
CC mips64-softmmu/target/mips/op_helper.o
CC mipsel-softmmu/hw/virtio/vhost-backend.o
CC mips-softmmu/hw/misc/mips_cmgcr.o
CC mipsel-softmmu/hw/virtio/vhost-user.o
CC mips-softmmu/hw/misc/mips_cpc.o
CC mips-softmmu/hw/misc/mips_itu.o
CC mipsel-softmmu/hw/virtio/vhost-vsock.o
CC mips64el-softmmu/target/mips/mips-semi.o
CC mipsel-softmmu/hw/virtio/virtio-crypto.o
CC mips64el-softmmu/target/mips/machine.o
CC mips-softmmu/hw/misc/mmio_interface.o
CC mips64el-softmmu/target/mips/cp0_timer.o
CC mipsel-softmmu/hw/virtio/virtio-crypto-pci.o
CC mips-softmmu/hw/net/virtio-net.o
GEN trace/generated-helpers.c
CC mips64el-softmmu/trace/control-target.o
CC mipsel-softmmu/hw/mips/mips_r4k.o
CC mips64el-softmmu/trace/generated-helpers.o
CC mips-softmmu/hw/net/vhost_net.o
CC mipsel-softmmu/hw/mips/mips_malta.o
CC mips64-softmmu/target/mips/lmi_helper.o
LINK mips64el-softmmu/qemu-system-mips64el
CC mips-softmmu/hw/scsi/virtio-scsi.o
CC mips64-softmmu/target/mips/helper.o
CC mips-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC mipsel-softmmu/hw/mips/mips_mipssim.o
CC mips-softmmu/hw/scsi/vhost-scsi-common.o
CC mipsel-softmmu/hw/mips/addr.o
CC mips64-softmmu/target/mips/cpu.o
CC mips-softmmu/hw/scsi/vhost-scsi.o
CC mipsel-softmmu/hw/mips/mips_int.o
CC mips64-softmmu/target/mips/gdbstub.o
CC mipsel-softmmu/hw/mips/gt64xxx_pci.o
CC mips-softmmu/hw/scsi/vhost-user-scsi.o
CC mipsel-softmmu/hw/mips/cps.o
CC mips-softmmu/hw/timer/mips_gictimer.o
CC mips64-softmmu/target/mips/msa_helper.o
CC mips64-softmmu/target/mips/mips-semi.o
CC mipsel-softmmu/target/mips/translate.o
CC mips-softmmu/hw/timer/mc146818rtc.o
CC mips-softmmu/hw/vfio/common.o
CC mips64-softmmu/target/mips/machine.o
CC mips-softmmu/hw/vfio/pci.o
CC mips-softmmu/hw/vfio/pci-quirks.o
CC mips64-softmmu/target/mips/cp0_timer.o
CC mips-softmmu/hw/vfio/platform.o
CC mips-softmmu/hw/vfio/spapr.o
GEN trace/generated-helpers.c
CC mips64-softmmu/trace/control-target.o
GEN moxie-softmmu/hmp-commands.h
CC mips64-softmmu/trace/generated-helpers.o
GEN moxie-softmmu/hmp-commands-info.h
GEN moxie-softmmu/config-target.h
CC mips-softmmu/hw/virtio/virtio.o
CC moxie-softmmu/exec.o
LINK mips64-softmmu/qemu-system-mips64
CC mips-softmmu/hw/virtio/virtio-balloon.o
CC mips-softmmu/hw/virtio/vhost.o
CC moxie-softmmu/tcg/tcg.o
CC mips-softmmu/hw/virtio/vhost-backend.o
CC mipsel-softmmu/target/mips/dsp_helper.o
CC mips-softmmu/hw/virtio/vhost-user.o
CC mips-softmmu/hw/virtio/vhost-vsock.o
CC mips-softmmu/hw/virtio/virtio-crypto.o
CC moxie-softmmu/tcg/tcg-op.o
CC mips-softmmu/hw/virtio/virtio-crypto-pci.o
CC mipsel-softmmu/target/mips/op_helper.o
CC mips-softmmu/hw/mips/mips_r4k.o
GEN nios2-softmmu/hmp-commands.h
GEN nios2-softmmu/hmp-commands-info.h
GEN nios2-softmmu/config-target.h
CC nios2-softmmu/exec.o
CC mips-softmmu/hw/mips/mips_malta.o
CC moxie-softmmu/tcg/optimize.o
CC mips-softmmu/hw/mips/mips_mipssim.o
CC mips-softmmu/hw/mips/addr.o
CC mipsel-softmmu/target/mips/lmi_helper.o
CC moxie-softmmu/tcg/tcg-common.o
CC mips-softmmu/hw/mips/mips_int.o
CC nios2-softmmu/tcg/tcg.o
CC mipsel-softmmu/target/mips/helper.o
CC mips-softmmu/hw/mips/gt64xxx_pci.o
CC moxie-softmmu/fpu/softfloat.o
CC mips-softmmu/hw/mips/cps.o
CC mipsel-softmmu/target/mips/cpu.o
CC mips-softmmu/target/mips/translate.o
CC mipsel-softmmu/target/mips/gdbstub.o
CC nios2-softmmu/tcg/tcg-op.o
CC mipsel-softmmu/target/mips/msa_helper.o
CC moxie-softmmu/disas.o
CC nios2-softmmu/tcg/optimize.o
CC moxie-softmmu/arch_init.o
CC moxie-softmmu/cpus.o
CC nios2-softmmu/tcg/tcg-common.o
CC mipsel-softmmu/target/mips/mips-semi.o
CC nios2-softmmu/fpu/softfloat.o
CC moxie-softmmu/monitor.o
CC mipsel-softmmu/target/mips/machine.o
CC mipsel-softmmu/target/mips/cp0_timer.o
CC moxie-softmmu/gdbstub.o
GEN trace/generated-helpers.c
CC mipsel-softmmu/trace/control-target.o
CC moxie-softmmu/balloon.o
CC nios2-softmmu/disas.o
CC mipsel-softmmu/trace/generated-helpers.o
CC nios2-softmmu/arch_init.o
CC moxie-softmmu/ioport.o
LINK mipsel-softmmu/qemu-system-mipsel
CC nios2-softmmu/cpus.o
CC moxie-softmmu/numa.o
CC mips-softmmu/target/mips/dsp_helper.o
CC moxie-softmmu/qtest.o
CC nios2-softmmu/monitor.o
CC moxie-softmmu/memory.o
CC mips-softmmu/target/mips/op_helper.o
CC moxie-softmmu/memory_mapping.o
CC nios2-softmmu/gdbstub.o
GEN or1k-softmmu/hmp-commands.h
GEN or1k-softmmu/hmp-commands-info.h
GEN or1k-softmmu/config-target.h
CC or1k-softmmu/exec.o
CC nios2-softmmu/balloon.o
CC moxie-softmmu/dump.o
CC nios2-softmmu/ioport.o
CC moxie-softmmu/migration/ram.o
CC mips-softmmu/target/mips/lmi_helper.o
CC nios2-softmmu/numa.o
CC nios2-softmmu/qtest.o
CC or1k-softmmu/tcg/tcg.o
CC mips-softmmu/target/mips/helper.o
CC moxie-softmmu/accel/accel.o
CC nios2-softmmu/memory.o
CC moxie-softmmu/accel/stubs/hax-stub.o
CC mips-softmmu/target/mips/cpu.o
CC moxie-softmmu/accel/stubs/kvm-stub.o
CC mips-softmmu/target/mips/gdbstub.o
CC nios2-softmmu/memory_mapping.o
CC moxie-softmmu/accel/tcg/tcg-all.o
CC or1k-softmmu/tcg/tcg-op.o
CC moxie-softmmu/accel/tcg/cputlb.o
CC mips-softmmu/target/mips/msa_helper.o
CC nios2-softmmu/dump.o
CC nios2-softmmu/migration/ram.o
CC moxie-softmmu/accel/tcg/tcg-runtime.o
CC or1k-softmmu/tcg/optimize.o
CC moxie-softmmu/accel/tcg/cpu-exec.o
CC or1k-softmmu/tcg/tcg-common.o
CC nios2-softmmu/accel/accel.o
CC moxie-softmmu/accel/tcg/cpu-exec-common.o
CC nios2-softmmu/accel/stubs/hax-stub.o
CC or1k-softmmu/fpu/softfloat.o
CC moxie-softmmu/accel/tcg/translate-all.o
CC nios2-softmmu/accel/stubs/kvm-stub.o
CC nios2-softmmu/accel/tcg/tcg-all.o
CC moxie-softmmu/accel/tcg/translator.o
CC nios2-softmmu/accel/tcg/cputlb.o
CC moxie-softmmu/hw/core/generic-loader.o
CC mips-softmmu/target/mips/mips-semi.o
CC moxie-softmmu/hw/core/null-machine.o
CC mips-softmmu/target/mips/machine.o
CC moxie-softmmu/hw/display/vga.o
CC mips-softmmu/target/mips/cp0_timer.o
CC nios2-softmmu/accel/tcg/tcg-runtime.o
GEN trace/generated-helpers.c
CC or1k-softmmu/disas.o
CC mips-softmmu/trace/control-target.o
CC nios2-softmmu/accel/tcg/cpu-exec.o
CC mips-softmmu/trace/generated-helpers.o
CC or1k-softmmu/arch_init.o
CC moxie-softmmu/hw/misc/mmio_interface.o
CC nios2-softmmu/accel/tcg/cpu-exec-common.o
CC or1k-softmmu/cpus.o
CC moxie-softmmu/hw/net/vhost_net.o
LINK mips-softmmu/qemu-system-mips
CC nios2-softmmu/accel/tcg/translate-all.o
CC moxie-softmmu/hw/net/rocker/qmp-norocker.o
CC or1k-softmmu/monitor.o
CC moxie-softmmu/hw/timer/mc146818rtc.o
CC nios2-softmmu/accel/tcg/translator.o
CC nios2-softmmu/hw/core/generic-loader.o
CC moxie-softmmu/hw/vfio/common.o
CC nios2-softmmu/hw/core/null-machine.o
CC or1k-softmmu/gdbstub.o
CC nios2-softmmu/hw/intc/nios2_iic.o
CC moxie-softmmu/hw/vfio/platform.o
CC or1k-softmmu/balloon.o
CC moxie-softmmu/hw/vfio/spapr.o
CC nios2-softmmu/hw/misc/mmio_interface.o
GEN ppc64-softmmu/hmp-commands.h
GEN ppc64-softmmu/hmp-commands-info.h
CC or1k-softmmu/ioport.o
GEN ppc64-softmmu/config-target.h
CC nios2-softmmu/hw/net/vhost_net.o
CC moxie-softmmu/hw/moxie/moxiesim.o
CC ppc64-softmmu/exec.o
CC or1k-softmmu/numa.o
CC moxie-softmmu/target/moxie/translate.o
CC nios2-softmmu/hw/net/rocker/qmp-norocker.o
CC nios2-softmmu/hw/timer/altera_timer.o
CC or1k-softmmu/qtest.o
CC moxie-softmmu/target/moxie/helper.o
CC nios2-softmmu/hw/vfio/common.o
CC or1k-softmmu/memory.o
CC moxie-softmmu/target/moxie/machine.o
CC moxie-softmmu/target/moxie/cpu.o
CC nios2-softmmu/hw/vfio/platform.o
CC moxie-softmmu/target/moxie/mmu.o
CC ppc64-softmmu/tcg/tcg.o
GEN trace/generated-helpers.c
CC nios2-softmmu/hw/vfio/spapr.o
CC moxie-softmmu/trace/control-target.o
CC nios2-softmmu/hw/nios2/boot.o
CC or1k-softmmu/memory_mapping.o
CC nios2-softmmu/hw/nios2/cpu_pic.o
CC moxie-softmmu/trace/generated-helpers.o
CC or1k-softmmu/dump.o
LINK moxie-softmmu/qemu-system-moxie
CC nios2-softmmu/hw/nios2/10m50_devboard.o
CC nios2-softmmu/target/nios2/translate.o
CC or1k-softmmu/migration/ram.o
CC ppc64-softmmu/tcg/tcg-op.o
CC nios2-softmmu/target/nios2/op_helper.o
CC or1k-softmmu/accel/accel.o
CC nios2-softmmu/target/nios2/helper.o
GEN ppcemb-softmmu/hmp-commands.h
GEN ppcemb-softmmu/hmp-commands-info.h
GEN ppcemb-softmmu/config-target.h
CC or1k-softmmu/accel/stubs/hax-stub.o
CC nios2-softmmu/target/nios2/cpu.o
CC ppcemb-softmmu/exec.o
CC or1k-softmmu/accel/stubs/kvm-stub.o
CC nios2-softmmu/target/nios2/mmu.o
CC or1k-softmmu/accel/tcg/tcg-all.o
CC or1k-softmmu/accel/tcg/cputlb.o
CC nios2-softmmu/target/nios2/monitor.o
CC ppc64-softmmu/tcg/optimize.o
GEN trace/generated-helpers.c
CC nios2-softmmu/trace/control-target.o
CC ppcemb-softmmu/tcg/tcg.o
CC nios2-softmmu/trace/generated-helpers.o
CC ppc64-softmmu/tcg/tcg-common.o
CC or1k-softmmu/accel/tcg/tcg-runtime.o
CC ppc64-softmmu/fpu/softfloat.o
LINK nios2-softmmu/qemu-system-nios2
CC or1k-softmmu/accel/tcg/cpu-exec.o
CC or1k-softmmu/accel/tcg/cpu-exec-common.o
CC or1k-softmmu/accel/tcg/translate-all.o
CC ppc64-softmmu/disas.o
CC ppcemb-softmmu/tcg/tcg-op.o
CC or1k-softmmu/accel/tcg/translator.o
CC or1k-softmmu/hw/core/generic-loader.o
CC or1k-softmmu/hw/core/null-machine.o
CC or1k-softmmu/hw/intc/ompic.o
GEN ppc-softmmu/hmp-commands.h
GEN ppc-softmmu/hmp-commands-info.h
GEN ppc-softmmu/config-target.h
CC ppc-softmmu/exec.o
GEN ppc64-softmmu/gdbstub-xml.c
CC or1k-softmmu/hw/misc/mmio_interface.o
CC or1k-softmmu/hw/net/vhost_net.o
CC or1k-softmmu/hw/net/rocker/qmp-norocker.o
CC ppc64-softmmu/arch_init.o
CC or1k-softmmu/hw/vfio/common.o
CC ppcemb-softmmu/tcg/optimize.o
CC ppc64-softmmu/cpus.o
CC or1k-softmmu/hw/vfio/platform.o
CC ppc-softmmu/tcg/tcg.o
CC ppc64-softmmu/monitor.o
CC ppcemb-softmmu/tcg/tcg-common.o
CC or1k-softmmu/hw/vfio/spapr.o
CC ppcemb-softmmu/fpu/softfloat.o
CC or1k-softmmu/hw/openrisc/pic_cpu.o
CC or1k-softmmu/hw/openrisc/cputimer.o
CC ppc64-softmmu/gdbstub.o
CC or1k-softmmu/hw/openrisc/openrisc_sim.o
CC ppc-softmmu/tcg/tcg-op.o
CC ppc64-softmmu/balloon.o
CC or1k-softmmu/target/openrisc/machine.o
CC ppc64-softmmu/ioport.o
CC or1k-softmmu/target/openrisc/cpu.o
CC ppc64-softmmu/numa.o
CC or1k-softmmu/target/openrisc/exception.o
CC ppcemb-softmmu/disas.o
CC ppc64-softmmu/qtest.o
CC or1k-softmmu/target/openrisc/interrupt.o
CC or1k-softmmu/target/openrisc/mmu.o
GEN ppcemb-softmmu/gdbstub-xml.c
CC ppc-softmmu/tcg/optimize.o
CC or1k-softmmu/target/openrisc/translate.o
CC ppc64-softmmu/memory.o
CC ppcemb-softmmu/arch_init.o
CC ppcemb-softmmu/cpus.o
CC or1k-softmmu/target/openrisc/exception_helper.o
CC ppc-softmmu/tcg/tcg-common.o
CC ppc64-softmmu/memory_mapping.o
CC ppc-softmmu/fpu/softfloat.o
CC ppcemb-softmmu/monitor.o
CC or1k-softmmu/target/openrisc/fpu_helper.o
CC ppc64-softmmu/dump.o
CC or1k-softmmu/target/openrisc/interrupt_helper.o
CC or1k-softmmu/target/openrisc/mmu_helper.o
CC ppc64-softmmu/migration/ram.o
CC ppcemb-softmmu/gdbstub.o
CC or1k-softmmu/target/openrisc/sys_helper.o
CC or1k-softmmu/target/openrisc/gdbstub.o
CC ppc64-softmmu/accel/accel.o
CC ppcemb-softmmu/balloon.o
CC ppc-softmmu/disas.o
GEN trace/generated-helpers.c
CC or1k-softmmu/trace/control-target.o
CC ppc64-softmmu/accel/stubs/hax-stub.o
CC or1k-softmmu/trace/generated-helpers.o
CC ppcemb-softmmu/ioport.o
GEN ppc-softmmu/gdbstub-xml.c
CC ppc64-softmmu/accel/stubs/kvm-stub.o
CC ppc-softmmu/arch_init.o
LINK or1k-softmmu/qemu-system-or1k
CC ppcemb-softmmu/numa.o
CC ppc64-softmmu/accel/tcg/tcg-all.o
CC ppc-softmmu/cpus.o
CC ppc64-softmmu/accel/tcg/cputlb.o
CC ppc-softmmu/monitor.o
CC ppcemb-softmmu/qtest.o
CC ppc64-softmmu/accel/tcg/tcg-runtime.o
CC ppcemb-softmmu/memory.o
CC ppc64-softmmu/accel/tcg/cpu-exec.o
CC ppc-softmmu/gdbstub.o
GEN s390x-softmmu/hmp-commands.h
GEN s390x-softmmu/hmp-commands-info.h
CC ppc64-softmmu/accel/tcg/cpu-exec-common.o
CC s390x-softmmu/gen-features
CC ppc64-softmmu/accel/tcg/translate-all.o
CC ppc-softmmu/balloon.o
GEN s390x-softmmu/config-target.h
GEN s390x-softmmu/gen-features.h
CC s390x-softmmu/exec.o
CC ppcemb-softmmu/memory_mapping.o
CC ppc-softmmu/ioport.o
CC ppc64-softmmu/accel/tcg/translator.o
CC ppcemb-softmmu/dump.o
CC ppc-softmmu/numa.o
CC ppcemb-softmmu/migration/ram.o
CC ppc64-softmmu/hw/9pfs/virtio-9p-device.o
CC ppc-softmmu/qtest.o
CC s390x-softmmu/tcg/tcg.o
CC ppc-softmmu/memory.o
CC ppc64-softmmu/hw/block/virtio-blk.o
CC ppcemb-softmmu/accel/accel.o
CC ppc64-softmmu/hw/block/dataplane/virtio-blk.o
CC ppc64-softmmu/hw/char/spapr_vty.o
CC ppcemb-softmmu/accel/stubs/hax-stub.o
CC ppc-softmmu/memory_mapping.o
CC ppcemb-softmmu/accel/stubs/kvm-stub.o
CC ppc64-softmmu/hw/char/virtio-serial-bus.o
CC ppc-softmmu/dump.o
CC ppcemb-softmmu/accel/tcg/tcg-all.o
CC s390x-softmmu/tcg/tcg-op.o
CC ppc64-softmmu/hw/core/generic-loader.o
CC ppcemb-softmmu/accel/tcg/cputlb.o
CC ppc64-softmmu/hw/core/null-machine.o
CC ppc-softmmu/migration/ram.o
CC ppc64-softmmu/hw/display/sm501.o
CC ppc-softmmu/accel/accel.o
CC ppcemb-softmmu/accel/tcg/tcg-runtime.o
CC ppc64-softmmu/hw/display/vga.o
CC s390x-softmmu/tcg/optimize.o
CC ppc-softmmu/accel/stubs/hax-stub.o
CC ppcemb-softmmu/accel/tcg/cpu-exec.o
CC ppc-softmmu/accel/stubs/kvm-stub.o
CC ppcemb-softmmu/accel/tcg/cpu-exec-common.o
CC s390x-softmmu/tcg/tcg-common.o
CC ppc-softmmu/accel/tcg/tcg-all.o
CC ppc64-softmmu/hw/display/virtio-gpu.o
CC ppcemb-softmmu/accel/tcg/translate-all.o
CC ppc-softmmu/accel/tcg/cputlb.o
CC s390x-softmmu/fpu/softfloat.o
CC ppcemb-softmmu/accel/tcg/translator.o
CC ppc64-softmmu/hw/display/virtio-gpu-3d.o
CC ppc-softmmu/accel/tcg/tcg-runtime.o
CC ppcemb-softmmu/hw/9pfs/virtio-9p-device.o
CC ppcemb-softmmu/hw/block/virtio-blk.o
CC ppc64-softmmu/hw/display/virtio-gpu-pci.o
CC ppc-softmmu/accel/tcg/cpu-exec.o
CC ppc64-softmmu/hw/display/virtio-vga.o
CC ppcemb-softmmu/hw/block/dataplane/virtio-blk.o
CC ppc-softmmu/accel/tcg/cpu-exec-common.o
CC ppc-softmmu/accel/tcg/translate-all.o
CC ppcemb-softmmu/hw/char/virtio-serial-bus.o
CC ppc64-softmmu/hw/i2c/ppc4xx_i2c.o
CC s390x-softmmu/disas.o
GEN s390x-softmmu/gdbstub-xml.c
CC ppc-softmmu/accel/tcg/translator.o
CC ppc64-softmmu/hw/intc/xics.o
CC ppcemb-softmmu/hw/core/generic-loader.o
CC ppcemb-softmmu/hw/core/null-machine.o
CC ppc64-softmmu/hw/intc/xics_spapr.o
CC ppc-softmmu/hw/9pfs/virtio-9p-device.o
CC s390x-softmmu/arch_init.o
CC ppcemb-softmmu/hw/display/sm501.o
CC s390x-softmmu/cpus.o
CC ppc-softmmu/hw/block/virtio-blk.o
CC ppc64-softmmu/hw/intc/xics_pnv.o
CC ppc64-softmmu/hw/misc/ivshmem.o
CC ppc-softmmu/hw/block/dataplane/virtio-blk.o
CC ppcemb-softmmu/hw/display/vga.o
CC s390x-softmmu/monitor.o
CC ppc-softmmu/hw/char/virtio-serial-bus.o
CC ppc64-softmmu/hw/misc/mmio_interface.o
CC ppc-softmmu/hw/core/generic-loader.o
CC ppc64-softmmu/hw/net/spapr_llan.o
CC ppc-softmmu/hw/core/null-machine.o
CC ppcemb-softmmu/hw/display/virtio-gpu.o
CC ppc-softmmu/hw/display/sm501.o
CC s390x-softmmu/gdbstub.o
CC ppc64-softmmu/hw/net/xilinx_ethlite.o
CC ppc64-softmmu/hw/net/virtio-net.o
CC ppcemb-softmmu/hw/display/virtio-gpu-3d.o
CC s390x-softmmu/balloon.o
CC ppc-softmmu/hw/display/vga.o
CC s390x-softmmu/ioport.o
CC ppc64-softmmu/hw/net/vhost_net.o
CC ppcemb-softmmu/hw/display/virtio-gpu-pci.o
CC s390x-softmmu/numa.o
CC ppc64-softmmu/hw/net/fsl_etsec/etsec.o
CC s390x-softmmu/qtest.o
CC ppcemb-softmmu/hw/i2c/ppc4xx_i2c.o
CC ppc-softmmu/hw/display/virtio-gpu.o
CC ppc64-softmmu/hw/net/fsl_etsec/registers.o
CC ppcemb-softmmu/hw/misc/ivshmem.o
CC s390x-softmmu/memory.o
CC ppcemb-softmmu/hw/misc/mmio_interface.o
CC ppc64-softmmu/hw/net/fsl_etsec/rings.o
CC ppc-softmmu/hw/display/virtio-gpu-3d.o
CC ppcemb-softmmu/hw/net/xilinx_ethlite.o
CC ppc64-softmmu/hw/net/fsl_etsec/miim.o
CC ppcemb-softmmu/hw/net/virtio-net.o
CC ppc-softmmu/hw/display/virtio-gpu-pci.o
CC s390x-softmmu/memory_mapping.o
CC ppc64-softmmu/hw/nvram/spapr_nvram.o
CC ppc-softmmu/hw/i2c/ppc4xx_i2c.o
CC s390x-softmmu/dump.o
CC ppcemb-softmmu/hw/net/vhost_net.o
CC ppc64-softmmu/hw/scsi/spapr_vscsi.o
CC ppc-softmmu/hw/misc/ivshmem.o
CC ppcemb-softmmu/hw/scsi/virtio-scsi.o
CC ppc-softmmu/hw/misc/mmio_interface.o
CC ppc64-softmmu/hw/scsi/virtio-scsi.o
CC s390x-softmmu/migration/ram.o
CC ppc-softmmu/hw/net/xilinx_ethlite.o
CC ppcemb-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC ppc64-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC ppc-softmmu/hw/net/virtio-net.o
CC s390x-softmmu/accel/accel.o
CC ppcemb-softmmu/hw/scsi/vhost-scsi-common.o
CC ppc64-softmmu/hw/scsi/vhost-scsi-common.o
CC s390x-softmmu/accel/kvm/kvm-all.o
CC ppcemb-softmmu/hw/scsi/vhost-scsi.o
CC ppc-softmmu/hw/net/vhost_net.o
CC ppc64-softmmu/hw/scsi/vhost-scsi.o
CC ppc-softmmu/hw/net/fsl_etsec/etsec.o
CC ppcemb-softmmu/hw/scsi/vhost-user-scsi.o
CC ppc64-softmmu/hw/scsi/vhost-user-scsi.o
CC ppc-softmmu/hw/net/fsl_etsec/registers.o
CC ppcemb-softmmu/hw/vfio/common.o
CC ppc64-softmmu/hw/timer/mc146818rtc.o
CC s390x-softmmu/accel/stubs/hax-stub.o
CC ppc-softmmu/hw/net/fsl_etsec/rings.o
CC s390x-softmmu/accel/tcg/tcg-all.o
CC ppc64-softmmu/hw/vfio/common.o
CC ppcemb-softmmu/hw/vfio/pci.o
CC ppc-softmmu/hw/net/fsl_etsec/miim.o
CC s390x-softmmu/accel/tcg/cputlb.o
CC ppc-softmmu/hw/scsi/virtio-scsi.o
CC ppc64-softmmu/hw/vfio/pci.o
CC ppc-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC ppcemb-softmmu/hw/vfio/pci-quirks.o
CC ppc-softmmu/hw/scsi/vhost-scsi-common.o
CC s390x-softmmu/accel/tcg/tcg-runtime.o
CC ppc64-softmmu/hw/vfio/pci-quirks.o
CC ppc-softmmu/hw/scsi/vhost-scsi.o
CC ppcemb-softmmu/hw/vfio/platform.o
CC s390x-softmmu/accel/tcg/cpu-exec.o
CC ppc-softmmu/hw/scsi/vhost-user-scsi.o
CC ppcemb-softmmu/hw/vfio/spapr.o
CC ppc-softmmu/hw/timer/mc146818rtc.o
CC s390x-softmmu/accel/tcg/cpu-exec-common.o
CC ppc64-softmmu/hw/vfio/platform.o
CC ppcemb-softmmu/hw/virtio/virtio.o
CC ppc64-softmmu/hw/vfio/spapr.o
CC s390x-softmmu/accel/tcg/translate-all.o
CC ppc-softmmu/hw/vfio/common.o
CC ppc64-softmmu/hw/virtio/virtio.o
CC s390x-softmmu/accel/tcg/translator.o
CC ppc-softmmu/hw/vfio/pci.o
CC s390x-softmmu/hw/9pfs/virtio-9p-device.o
CC ppcemb-softmmu/hw/virtio/virtio-balloon.o
CC s390x-softmmu/hw/block/virtio-blk.o
CC ppc64-softmmu/hw/virtio/virtio-balloon.o
CC ppcemb-softmmu/hw/virtio/vhost.o
CC ppc-softmmu/hw/vfio/pci-quirks.o
CC s390x-softmmu/hw/block/dataplane/virtio-blk.o
CC ppc64-softmmu/hw/virtio/vhost.o
CC s390x-softmmu/hw/char/virtio-serial-bus.o
CC ppcemb-softmmu/hw/virtio/vhost-backend.o
CC ppc64-softmmu/hw/virtio/vhost-backend.o
CC s390x-softmmu/hw/char/terminal3270.o
CC ppc-softmmu/hw/vfio/platform.o
CC ppcemb-softmmu/hw/virtio/vhost-user.o
CC s390x-softmmu/hw/core/generic-loader.o
CC ppc64-softmmu/hw/virtio/vhost-user.o
CC ppc-softmmu/hw/vfio/spapr.o
CC s390x-softmmu/hw/core/null-machine.o
CC ppcemb-softmmu/hw/virtio/vhost-vsock.o
CC ppc-softmmu/hw/virtio/virtio.o
CC s390x-softmmu/hw/display/virtio-gpu.o
CC ppc64-softmmu/hw/virtio/vhost-vsock.o
CC ppcemb-softmmu/hw/virtio/virtio-crypto.o
CC ppcemb-softmmu/hw/virtio/virtio-crypto-pci.o
CC ppc64-softmmu/hw/virtio/virtio-crypto.o
CC ppc-softmmu/hw/virtio/virtio-balloon.o
CC s390x-softmmu/hw/display/virtio-gpu-3d.o
CC ppc64-softmmu/hw/virtio/virtio-crypto-pci.o
CC ppc-softmmu/hw/virtio/vhost.o
CC ppcemb-softmmu/hw/ppc/ppc.o
CC ppc64-softmmu/hw/ppc/ppc.o
CC s390x-softmmu/hw/display/virtio-gpu-pci.o
CC ppc-softmmu/hw/virtio/vhost-backend.o
CC ppcemb-softmmu/hw/ppc/ppc_booke.o
CC ppc64-softmmu/hw/ppc/ppc_booke.o
CC ppc-softmmu/hw/virtio/vhost-user.o
CC s390x-softmmu/hw/intc/s390_flic.o
CC ppcemb-softmmu/hw/ppc/fdt.o
CC ppc64-softmmu/hw/ppc/fdt.o
CC ppcemb-softmmu/hw/ppc/ppc405_boards.o
CC s390x-softmmu/hw/intc/s390_flic_kvm.o
CC ppc-softmmu/hw/virtio/vhost-vsock.o
CC ppc64-softmmu/hw/ppc/spapr.o
CC ppcemb-softmmu/hw/ppc/ppc4xx_devs.o
CC s390x-softmmu/hw/misc/mmio_interface.o
CC ppc-softmmu/hw/virtio/virtio-crypto.o
CC s390x-softmmu/hw/net/virtio-net.o
CC ppcemb-softmmu/hw/ppc/ppc405_uc.o
CC ppc-softmmu/hw/virtio/virtio-crypto-pci.o
CC s390x-softmmu/hw/net/vhost_net.o
CC ppc64-softmmu/hw/ppc/spapr_vio.o
CC ppcemb-softmmu/hw/ppc/ppc440_bamboo.o
CC ppc-softmmu/hw/ppc/ppc.o
CC s390x-softmmu/hw/net/rocker/qmp-norocker.o
CC ppcemb-softmmu/hw/ppc/ppc4xx_pci.o
CC ppc-softmmu/hw/ppc/ppc_booke.o
CC s390x-softmmu/hw/scsi/virtio-scsi.o
CC ppc64-softmmu/hw/ppc/spapr_events.o
CC ppcemb-softmmu/hw/ppc/virtex_ml507.o
CC ppc-softmmu/hw/ppc/fdt.o
CC s390x-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC ppc64-softmmu/hw/ppc/spapr_hcall.o
CC ppc-softmmu/hw/ppc/ppc405_boards.o
CC ppcemb-softmmu/target/ppc/cpu-models.o
CC s390x-softmmu/hw/scsi/vhost-scsi-common.o
CC ppc-softmmu/hw/ppc/ppc4xx_devs.o
CC ppc64-softmmu/hw/ppc/spapr_iommu.o
CC s390x-softmmu/hw/scsi/vhost-scsi.o
CC s390x-softmmu/hw/scsi/vhost-user-scsi.o
CC ppc-softmmu/hw/ppc/ppc405_uc.o
CC s390x-softmmu/hw/vfio/common.o
CC ppc64-softmmu/hw/ppc/spapr_rtas.o
CC ppcemb-softmmu/target/ppc/cpu.o
CC ppc-softmmu/hw/ppc/ppc440_bamboo.o
CC ppc64-softmmu/hw/ppc/spapr_pci.o
CC ppcemb-softmmu/target/ppc/translate.o
CC ppc-softmmu/hw/ppc/ppc4xx_pci.o
CC s390x-softmmu/hw/vfio/pci.o
CC ppc-softmmu/hw/ppc/prep.o
CC ppc64-softmmu/hw/ppc/spapr_rtc.o
CC ppc-softmmu/hw/ppc/prep_systemio.o
CC ppc64-softmmu/hw/ppc/spapr_drc.o
CC s390x-softmmu/hw/vfio/pci-quirks.o
CC ppc-softmmu/hw/ppc/rs6000_mc.o
CC ppc64-softmmu/hw/ppc/spapr_rng.o
CC s390x-softmmu/hw/vfio/ccw.o
CC ppc-softmmu/hw/ppc/mac_oldworld.o
CC ppc64-softmmu/hw/ppc/spapr_cpu_core.o
CC s390x-softmmu/hw/vfio/platform.o
CC ppc-softmmu/hw/ppc/mac_newworld.o
CC ppc64-softmmu/hw/ppc/spapr_ovec.o
CC s390x-softmmu/hw/vfio/spapr.o
CC ppc-softmmu/hw/ppc/e500.o
CC ppc64-softmmu/hw/ppc/pnv.o
CC s390x-softmmu/hw/virtio/virtio.o
CC ppc-softmmu/hw/ppc/mpc8544ds.o
CC ppc-softmmu/hw/ppc/e500plat.o
CC ppc64-softmmu/hw/ppc/pnv_xscom.o
CC ppc-softmmu/hw/ppc/mpc8544_guts.o
CC ppc64-softmmu/hw/ppc/pnv_core.o
CC s390x-softmmu/hw/virtio/virtio-balloon.o
CC ppc-softmmu/hw/ppc/ppce500_spin.o
CC ppc64-softmmu/hw/ppc/pnv_lpc.o
CC ppc-softmmu/hw/ppc/virtex_ml507.o
CC s390x-softmmu/hw/virtio/vhost.o
CC ppc64-softmmu/hw/ppc/pnv_psi.o
CC ppc-softmmu/target/ppc/cpu-models.o
CC ppc64-softmmu/hw/ppc/pnv_occ.o
CC s390x-softmmu/hw/virtio/vhost-backend.o
CC ppc64-softmmu/hw/ppc/pnv_bmc.o
CC s390x-softmmu/hw/virtio/vhost-user.o
CC ppc64-softmmu/hw/ppc/spapr_pci_vfio.o
CC s390x-softmmu/hw/virtio/vhost-vsock.o
CC ppc-softmmu/target/ppc/cpu.o
CC ppc64-softmmu/hw/ppc/spapr_rtas_ddw.o
CC s390x-softmmu/hw/virtio/virtio-crypto.o
CC ppc-softmmu/target/ppc/translate.o
CC ppc64-softmmu/hw/ppc/ppc405_boards.o
CC s390x-softmmu/hw/virtio/virtio-crypto-pci.o
CC ppc64-softmmu/hw/ppc/ppc4xx_devs.o
CC s390x-softmmu/hw/s390x/s390-virtio-hcall.o
CC ppc64-softmmu/hw/ppc/ppc405_uc.o
CC s390x-softmmu/hw/s390x/sclp.o
CC ppc64-softmmu/hw/ppc/ppc440_bamboo.o
CC s390x-softmmu/hw/s390x/event-facility.o
CC ppc64-softmmu/hw/ppc/ppc4xx_pci.o
CC s390x-softmmu/hw/s390x/sclpquiesce.o
CC ppc64-softmmu/hw/ppc/prep.o
CC s390x-softmmu/hw/s390x/sclpcpu.o
CC ppc64-softmmu/hw/ppc/prep_systemio.o
CC s390x-softmmu/hw/s390x/ipl.o
CC ppc64-softmmu/hw/ppc/rs6000_mc.o
CC s390x-softmmu/hw/s390x/css.o
CC ppc64-softmmu/hw/ppc/mac_oldworld.o
CC ppc64-softmmu/hw/ppc/mac_newworld.o
CC s390x-softmmu/hw/s390x/s390-virtio-ccw.o
CC ppc64-softmmu/hw/ppc/e500.o
CC ppcemb-softmmu/target/ppc/machine.o
CC s390x-softmmu/hw/s390x/3270-ccw.o
CC ppc64-softmmu/hw/ppc/mpc8544ds.o
CC ppcemb-softmmu/target/ppc/mmu_helper.o
CC s390x-softmmu/hw/s390x/virtio-ccw.o
CC ppc64-softmmu/hw/ppc/e500plat.o
CC ppc64-softmmu/hw/ppc/mpc8544_guts.o
CC ppcemb-softmmu/target/ppc/mmu-hash32.o
CC ppcemb-softmmu/target/ppc/monitor.o
CC ppc64-softmmu/hw/ppc/ppce500_spin.o
CC s390x-softmmu/hw/s390x/css-bridge.o
CC ppcemb-softmmu/target/ppc/arch_dump.o
CC ppc64-softmmu/hw/ppc/virtex_ml507.o
CC ppcemb-softmmu/target/ppc/kvm-stub.o
CC s390x-softmmu/hw/s390x/ccw-device.o
CC ppcemb-softmmu/target/ppc/dfp_helper.o
CC ppc64-softmmu/target/ppc/cpu-models.o
CC s390x-softmmu/hw/s390x/s390-pci-bus.o
CC ppcemb-softmmu/target/ppc/excp_helper.o
CC s390x-softmmu/hw/s390x/s390-pci-inst.o
CC ppcemb-softmmu/target/ppc/fpu_helper.o
CC ppc64-softmmu/target/ppc/cpu.o
CC s390x-softmmu/hw/s390x/s390-skeys.o
CC ppc64-softmmu/target/ppc/translate.o
CC s390x-softmmu/hw/s390x/s390-stattrib.o
CC s390x-softmmu/hw/s390x/s390-skeys-kvm.o
CC s390x-softmmu/hw/s390x/s390-stattrib-kvm.o
CC s390x-softmmu/hw/s390x/s390-ccw.o
CC ppcemb-softmmu/target/ppc/int_helper.o
CC ppc-softmmu/target/ppc/machine.o
CC s390x-softmmu/target/s390x/cpu.o
CC ppc-softmmu/target/ppc/mmu_helper.o
CC s390x-softmmu/target/s390x/cpu_models.o
CC ppcemb-softmmu/target/ppc/timebase_helper.o
CC s390x-softmmu/target/s390x/cpu_features.o
CC ppc-softmmu/target/ppc/mmu-hash32.o
CC ppcemb-softmmu/target/ppc/misc_helper.o
CC ppc-softmmu/target/ppc/monitor.o
CC s390x-softmmu/target/s390x/gdbstub.o
CC ppcemb-softmmu/target/ppc/mem_helper.o
CC ppc-softmmu/target/ppc/arch_dump.o
CC s390x-softmmu/target/s390x/interrupt.o
CC ppc-softmmu/target/ppc/kvm-stub.o
CC ppcemb-softmmu/target/ppc/gdbstub.o
CC s390x-softmmu/target/s390x/helper.o
CC ppc-softmmu/target/ppc/dfp_helper.o
CC ppcemb-softmmu/target/ppc/../../libdecnumber/decContext.o
CC s390x-softmmu/target/s390x/translate.o
CC ppcemb-softmmu/target/ppc/../../libdecnumber/decNumber.o
CC ppc-softmmu/target/ppc/excp_helper.o
CC ppc-softmmu/target/ppc/fpu_helper.o
CC ppcemb-softmmu/target/ppc/../../libdecnumber/dpd/decimal32.o
CC ppcemb-softmmu/target/ppc/../../libdecnumber/dpd/decimal64.o
CC ppcemb-softmmu/target/ppc/../../libdecnumber/dpd/decimal128.o
CC s390x-softmmu/target/s390x/cc_helper.o
GEN trace/generated-helpers.c
CC ppcemb-softmmu/trace/control-target.o
CC s390x-softmmu/target/s390x/excp_helper.o
CC s390x-softmmu/target/s390x/fpu_helper.o
CC ppcemb-softmmu/gdbstub-xml.o
CC ppcemb-softmmu/trace/generated-helpers.o
LINK ppcemb-softmmu/qemu-system-ppcemb
CC ppc-softmmu/target/ppc/int_helper.o
CC s390x-softmmu/target/s390x/int_helper.o
CC s390x-softmmu/target/s390x/mem_helper.o
CC ppc-softmmu/target/ppc/timebase_helper.o
CC ppc64-softmmu/target/ppc/machine.o
CC ppc-softmmu/target/ppc/misc_helper.o
CC s390x-softmmu/target/s390x/misc_helper.o
CC ppc64-softmmu/target/ppc/mmu_helper.o
CC ppc-softmmu/target/ppc/mem_helper.o
CC ppc64-softmmu/target/ppc/mmu-hash32.o
CC ppc-softmmu/target/ppc/gdbstub.o
CC s390x-softmmu/target/s390x/crypto_helper.o
CC ppc64-softmmu/target/ppc/monitor.o
CC ppc-softmmu/target/ppc/../../libdecnumber/decContext.o
CC s390x-softmmu/target/s390x/machine.o
CC ppc64-softmmu/target/ppc/arch_dump.o
CC ppc-softmmu/target/ppc/../../libdecnumber/decNumber.o
GEN sh4eb-softmmu/hmp-commands.h
GEN sh4eb-softmmu/hmp-commands-info.h
CC s390x-softmmu/target/s390x/ioinst.o
GEN sh4eb-softmmu/config-target.h
CC sh4eb-softmmu/exec.o
CC ppc64-softmmu/target/ppc/mmu-hash64.o
CC s390x-softmmu/target/s390x/arch_dump.o
CC ppc64-softmmu/target/ppc/mmu-book3s-v3.o
CC ppc64-softmmu/target/ppc/compat.o
CC s390x-softmmu/target/s390x/mmu_helper.o
CC ppc-softmmu/target/ppc/../../libdecnumber/dpd/decimal32.o
CC ppc64-softmmu/target/ppc/mmu-radix64.o
CC s390x-softmmu/target/s390x/diag.o
CC ppc64-softmmu/target/ppc/kvm-stub.o
CC ppc-softmmu/target/ppc/../../libdecnumber/dpd/decimal64.o
CC s390x-softmmu/target/s390x/sigp.o
CC ppc64-softmmu/target/ppc/dfp_helper.o
CC ppc-softmmu/target/ppc/../../libdecnumber/dpd/decimal128.o
CC sh4eb-softmmu/tcg/tcg.o
CC s390x-softmmu/target/s390x/kvm.o
GEN trace/generated-helpers.c
CC ppc-softmmu/trace/control-target.o
CC ppc64-softmmu/target/ppc/excp_helper.o
CC ppc-softmmu/gdbstub-xml.o
GEN trace/generated-helpers.c
CC s390x-softmmu/trace/control-target.o
CC ppc-softmmu/trace/generated-helpers.o
CC s390x-softmmu/gdbstub-xml.o
CC ppc64-softmmu/target/ppc/fpu_helper.o
LINK ppc-softmmu/qemu-system-ppc
CC s390x-softmmu/trace/generated-helpers.o
CC sh4eb-softmmu/tcg/tcg-op.o
LINK s390x-softmmu/qemu-system-s390x
CC sh4eb-softmmu/tcg/optimize.o
CC ppc64-softmmu/target/ppc/int_helper.o
CC ppc64-softmmu/target/ppc/timebase_helper.o
CC sh4eb-softmmu/tcg/tcg-common.o
GEN sh4-softmmu/hmp-commands.h
GEN sh4-softmmu/hmp-commands-info.h
GEN sh4-softmmu/config-target.h
CC sh4eb-softmmu/fpu/softfloat.o
CC sh4-softmmu/exec.o
CC ppc64-softmmu/target/ppc/misc_helper.o
GEN sparc64-softmmu/hmp-commands.h
GEN sparc64-softmmu/hmp-commands-info.h
GEN sparc64-softmmu/config-target.h
CC sparc64-softmmu/exec.o
CC ppc64-softmmu/target/ppc/mem_helper.o
CC sh4-softmmu/tcg/tcg.o
CC ppc64-softmmu/target/ppc/gdbstub.o
CC sh4eb-softmmu/disas.o
CC ppc64-softmmu/target/ppc/../../libdecnumber/decContext.o
CC sparc64-softmmu/tcg/tcg.o
CC sh4eb-softmmu/arch_init.o
CC ppc64-softmmu/target/ppc/../../libdecnumber/decNumber.o
CC sh4eb-softmmu/cpus.o
CC sh4-softmmu/tcg/tcg-op.o
CC sh4eb-softmmu/monitor.o
CC sparc64-softmmu/tcg/tcg-op.o
CC ppc64-softmmu/target/ppc/../../libdecnumber/dpd/decimal32.o
CC ppc64-softmmu/target/ppc/../../libdecnumber/dpd/decimal64.o
CC sh4eb-softmmu/gdbstub.o
CC sh4-softmmu/tcg/optimize.o
CC ppc64-softmmu/target/ppc/../../libdecnumber/dpd/decimal128.o
GEN trace/generated-helpers.c
CC sh4eb-softmmu/balloon.o
CC ppc64-softmmu/trace/control-target.o
CC sparc64-softmmu/tcg/optimize.o
CC sh4-softmmu/tcg/tcg-common.o
CC sh4eb-softmmu/ioport.o
CC ppc64-softmmu/gdbstub-xml.o
CC sh4eb-softmmu/numa.o
CC ppc64-softmmu/trace/generated-helpers.o
CC sh4-softmmu/fpu/softfloat.o
CC sparc64-softmmu/tcg/tcg-common.o
LINK ppc64-softmmu/qemu-system-ppc64
CC sh4eb-softmmu/qtest.o
CC sparc64-softmmu/fpu/softfloat.o
CC sh4eb-softmmu/memory.o
CC sh4-softmmu/disas.o
CC sh4eb-softmmu/memory_mapping.o
CC sh4-softmmu/arch_init.o
CC sh4eb-softmmu/dump.o
CC sh4-softmmu/cpus.o
GEN sparc-softmmu/hmp-commands.h
GEN sparc-softmmu/hmp-commands-info.h
GEN sparc-softmmu/config-target.h
CC sh4eb-softmmu/migration/ram.o
CC sparc-softmmu/exec.o
CC sparc64-softmmu/disas.o
CC sh4-softmmu/monitor.o
CC sparc64-softmmu/arch_init.o
CC sh4eb-softmmu/accel/accel.o
CC sparc64-softmmu/cpus.o
CC sh4eb-softmmu/accel/stubs/hax-stub.o
CC sh4eb-softmmu/accel/stubs/kvm-stub.o
CC sparc64-softmmu/monitor.o
CC sh4eb-softmmu/accel/tcg/tcg-all.o
CC sh4-softmmu/gdbstub.o
CC sparc-softmmu/tcg/tcg.o
CC sh4eb-softmmu/accel/tcg/cputlb.o
CC sh4-softmmu/balloon.o
CC sh4-softmmu/ioport.o
CC sparc64-softmmu/gdbstub.o
CC sh4-softmmu/numa.o
CC sparc-softmmu/tcg/tcg-op.o
CC sparc64-softmmu/balloon.o
CC sh4-softmmu/qtest.o
CC sh4eb-softmmu/accel/tcg/tcg-runtime.o
CC sparc64-softmmu/ioport.o
CC sh4eb-softmmu/accel/tcg/cpu-exec.o
CC sh4-softmmu/memory.o
CC sparc64-softmmu/numa.o
CC sh4eb-softmmu/accel/tcg/cpu-exec-common.o
CC sh4eb-softmmu/accel/tcg/translate-all.o
CC sparc64-softmmu/qtest.o
CC sparc-softmmu/tcg/optimize.o
CC sparc64-softmmu/memory.o
CC sh4-softmmu/memory_mapping.o
CC sh4eb-softmmu/accel/tcg/translator.o
CC sh4-softmmu/dump.o
CC sparc-softmmu/tcg/tcg-common.o
CC sh4eb-softmmu/hw/9pfs/virtio-9p-device.o
CC sparc-softmmu/fpu/softfloat.o
CC sh4eb-softmmu/hw/block/tc58128.o
CC sh4-softmmu/migration/ram.o
CC sparc64-softmmu/memory_mapping.o
CC sh4eb-softmmu/hw/block/virtio-blk.o
CC sparc64-softmmu/dump.o
CC sh4-softmmu/accel/accel.o
CC sh4-softmmu/accel/stubs/hax-stub.o
CC sh4eb-softmmu/hw/block/dataplane/virtio-blk.o
CC sh4-softmmu/accel/stubs/kvm-stub.o
CC sh4-softmmu/accel/tcg/tcg-all.o
CC sparc64-softmmu/migration/ram.o
CC sh4eb-softmmu/hw/char/sh_serial.o
CC sh4-softmmu/accel/tcg/cputlb.o
CC sh4eb-softmmu/hw/char/virtio-serial-bus.o
CC sparc64-softmmu/accel/accel.o
CC sparc-softmmu/disas.o
CC sh4eb-softmmu/hw/core/generic-loader.o
CC sparc64-softmmu/accel/stubs/hax-stub.o
CC sparc-softmmu/arch_init.o
CC sh4-softmmu/accel/tcg/tcg-runtime.o
CC sparc64-softmmu/accel/stubs/kvm-stub.o
CC sh4eb-softmmu/hw/core/null-machine.o
CC sparc-softmmu/cpus.o
CC sparc64-softmmu/accel/tcg/tcg-all.o
CC sh4-softmmu/accel/tcg/cpu-exec.o
CC sh4eb-softmmu/hw/display/sm501.o
CC sparc64-softmmu/accel/tcg/cputlb.o
CC sparc-softmmu/monitor.o
CC sh4-softmmu/accel/tcg/cpu-exec-common.o
CC sh4eb-softmmu/hw/display/vga.o
CC sh4-softmmu/accel/tcg/translate-all.o
CC sh4-softmmu/accel/tcg/translator.o
CC sh4eb-softmmu/hw/display/virtio-gpu.o
CC sparc-softmmu/gdbstub.o
CC sh4-softmmu/hw/9pfs/virtio-9p-device.o
CC sparc64-softmmu/accel/tcg/tcg-runtime.o
CC sparc64-softmmu/accel/tcg/cpu-exec.o
CC sparc-softmmu/balloon.o
CC sh4-softmmu/hw/block/tc58128.o
CC sh4eb-softmmu/hw/display/virtio-gpu-3d.o
CC sparc-softmmu/ioport.o
CC sh4-softmmu/hw/block/virtio-blk.o
CC sparc64-softmmu/accel/tcg/cpu-exec-common.o
CC sparc-softmmu/numa.o
CC sparc64-softmmu/accel/tcg/translate-all.o
CC sh4eb-softmmu/hw/display/virtio-gpu-pci.o
CC sh4-softmmu/hw/block/dataplane/virtio-blk.o
CC sparc-softmmu/qtest.o
CC sh4-softmmu/hw/char/sh_serial.o
CC sparc64-softmmu/accel/tcg/translator.o
CC sh4eb-softmmu/hw/intc/sh_intc.o
CC sh4-softmmu/hw/char/virtio-serial-bus.o
CC sparc-softmmu/memory.o
CC sparc64-softmmu/hw/9pfs/virtio-9p-device.o
CC sh4eb-softmmu/hw/misc/ivshmem.o
CC sparc64-softmmu/hw/block/virtio-blk.o
CC sh4-softmmu/hw/core/generic-loader.o
CC sh4eb-softmmu/hw/misc/mmio_interface.o
CC sparc64-softmmu/hw/block/dataplane/virtio-blk.o
CC sh4eb-softmmu/hw/net/virtio-net.o
CC sh4-softmmu/hw/core/null-machine.o
CC sparc-softmmu/memory_mapping.o
CC sparc64-softmmu/hw/char/virtio-serial-bus.o
CC sparc-softmmu/dump.o
CC sh4-softmmu/hw/display/sm501.o
CC sh4eb-softmmu/hw/net/vhost_net.o
CC sparc64-softmmu/hw/core/generic-loader.o
CC sh4eb-softmmu/hw/scsi/virtio-scsi.o
CC sparc-softmmu/migration/ram.o
CC sparc64-softmmu/hw/core/null-machine.o
CC sh4-softmmu/hw/display/vga.o
CC sparc64-softmmu/hw/display/vga.o
CC sh4eb-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC sh4eb-softmmu/hw/scsi/vhost-scsi-common.o
CC sparc-softmmu/accel/accel.o
CC sh4eb-softmmu/hw/scsi/vhost-scsi.o
CC sh4-softmmu/hw/display/virtio-gpu.o
CC sparc-softmmu/accel/stubs/hax-stub.o
CC sparc-softmmu/accel/stubs/kvm-stub.o
CC sparc64-softmmu/hw/display/virtio-gpu.o
CC sh4eb-softmmu/hw/scsi/vhost-user-scsi.o
CC sparc-softmmu/accel/tcg/tcg-all.o
CC sh4-softmmu/hw/display/virtio-gpu-3d.o
CC sh4eb-softmmu/hw/timer/sh_timer.o
CC sparc-softmmu/accel/tcg/cputlb.o
CC sparc64-softmmu/hw/display/virtio-gpu-3d.o
CC sh4eb-softmmu/hw/timer/mc146818rtc.o
CC sh4-softmmu/hw/display/virtio-gpu-pci.o
CC sh4eb-softmmu/hw/vfio/common.o
CC sparc64-softmmu/hw/display/virtio-gpu-pci.o
CC sh4-softmmu/hw/intc/sh_intc.o
CC sparc-softmmu/accel/tcg/tcg-runtime.o
CC sparc64-softmmu/hw/misc/ivshmem.o
CC sh4eb-softmmu/hw/vfio/pci.o
CC sh4-softmmu/hw/misc/ivshmem.o
CC sparc-softmmu/accel/tcg/cpu-exec.o
CC sparc64-softmmu/hw/misc/mmio_interface.o
CC sh4-softmmu/hw/misc/mmio_interface.o
CC sparc64-softmmu/hw/net/virtio-net.o
CC sh4-softmmu/hw/net/virtio-net.o
CC sparc-softmmu/accel/tcg/cpu-exec-common.o
CC sh4eb-softmmu/hw/vfio/pci-quirks.o
CC sparc-softmmu/accel/tcg/translate-all.o
CC sparc64-softmmu/hw/net/vhost_net.o
CC sh4-softmmu/hw/net/vhost_net.o
CC sh4eb-softmmu/hw/vfio/platform.o
CC sh4-softmmu/hw/scsi/virtio-scsi.o
CC sparc64-softmmu/hw/scsi/virtio-scsi.o
CC sh4eb-softmmu/hw/vfio/spapr.o
CC sparc-softmmu/accel/tcg/translator.o
CC sh4-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC sh4eb-softmmu/hw/virtio/virtio.o
CC sparc64-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC sparc-softmmu/hw/core/generic-loader.o
CC sh4-softmmu/hw/scsi/vhost-scsi-common.o
CC sparc-softmmu/hw/core/null-machine.o
CC sparc64-softmmu/hw/scsi/vhost-scsi-common.o
CC sparc-softmmu/hw/display/tcx.o
CC sparc64-softmmu/hw/scsi/vhost-scsi.o
CC sh4-softmmu/hw/scsi/vhost-scsi.o
CC sh4eb-softmmu/hw/virtio/virtio-balloon.o
CC sh4-softmmu/hw/scsi/vhost-user-scsi.o
CC sparc64-softmmu/hw/scsi/vhost-user-scsi.o
CC sparc-softmmu/hw/display/cg3.o
CC sh4-softmmu/hw/timer/sh_timer.o
CC sh4eb-softmmu/hw/virtio/vhost.o
CC sparc64-softmmu/hw/timer/mc146818rtc.o
CC sparc-softmmu/hw/intc/grlib_irqmp.o
CC sh4-softmmu/hw/timer/mc146818rtc.o
CC sparc64-softmmu/hw/vfio/common.o
CC sh4eb-softmmu/hw/virtio/vhost-backend.o
CC sparc-softmmu/hw/misc/eccmemctl.o
CC sh4-softmmu/hw/vfio/common.o
CC sh4eb-softmmu/hw/virtio/vhost-user.o
CC sparc-softmmu/hw/misc/slavio_misc.o
CC sparc64-softmmu/hw/vfio/pci.o
CC sh4-softmmu/hw/vfio/pci.o
CC sh4eb-softmmu/hw/virtio/vhost-vsock.o
CC sparc-softmmu/hw/misc/mmio_interface.o
CC sh4eb-softmmu/hw/virtio/virtio-crypto.o
CC sparc-softmmu/hw/net/vhost_net.o
CC sh4eb-softmmu/hw/virtio/virtio-crypto-pci.o
CC sparc64-softmmu/hw/vfio/pci-quirks.o
CC sh4-softmmu/hw/vfio/pci-quirks.o
CC sparc-softmmu/hw/net/rocker/qmp-norocker.o
CC sparc-softmmu/hw/vfio/common.o
CC sh4eb-softmmu/hw/sh4/shix.o
CC sh4-softmmu/hw/vfio/platform.o
CC sparc64-softmmu/hw/vfio/platform.o
CC sh4eb-softmmu/hw/sh4/r2d.o
CC sparc-softmmu/hw/vfio/platform.o
CC sh4-softmmu/hw/vfio/spapr.o
CC sparc64-softmmu/hw/vfio/spapr.o
CC sh4eb-softmmu/hw/sh4/sh7750.o
CC sparc-softmmu/hw/vfio/spapr.o
CC sparc64-softmmu/hw/virtio/virtio.o
CC sh4-softmmu/hw/virtio/virtio.o
CC sparc-softmmu/hw/sparc/sun4m.o
CC sh4eb-softmmu/hw/sh4/sh7750_regnames.o
CC sh4eb-softmmu/hw/sh4/sh_pci.o
CC sparc-softmmu/hw/sparc/leon3.o
CC sparc64-softmmu/hw/virtio/virtio-balloon.o
CC sh4eb-softmmu/target/sh4/translate.o
CC sh4-softmmu/hw/virtio/virtio-balloon.o
CC sparc-softmmu/target/sparc/machine.o
CC sparc64-softmmu/hw/virtio/vhost.o
CC sparc-softmmu/target/sparc/monitor.o
CC sh4-softmmu/hw/virtio/vhost.o
CC sparc-softmmu/target/sparc/translate.o
CC sparc64-softmmu/hw/virtio/vhost-backend.o
CC sh4-softmmu/hw/virtio/vhost-backend.o
CC sparc64-softmmu/hw/virtio/vhost-user.o
CC sh4eb-softmmu/target/sh4/op_helper.o
CC sh4-softmmu/hw/virtio/vhost-user.o
CC sh4eb-softmmu/target/sh4/helper.o
CC sparc64-softmmu/hw/virtio/vhost-vsock.o
CC sh4-softmmu/hw/virtio/vhost-vsock.o
CC sparc-softmmu/target/sparc/helper.o
CC sparc64-softmmu/hw/virtio/virtio-crypto.o
CC sh4eb-softmmu/target/sh4/cpu.o
CC sh4-softmmu/hw/virtio/virtio-crypto.o
CC sparc-softmmu/target/sparc/cpu.o
CC sh4eb-softmmu/target/sh4/monitor.o
CC sparc64-softmmu/hw/virtio/virtio-crypto-pci.o
CC sh4-softmmu/hw/virtio/virtio-crypto-pci.o
CC sh4eb-softmmu/target/sh4/gdbstub.o
CC sparc-softmmu/target/sparc/fop_helper.o
GEN trace/generated-helpers.c
CC sparc64-softmmu/hw/sparc64/sparc64.o
CC sh4-softmmu/hw/sh4/shix.o
CC sh4eb-softmmu/trace/control-target.o
CC sparc-softmmu/target/sparc/cc_helper.o
CC sh4-softmmu/hw/sh4/r2d.o
CC sparc64-softmmu/hw/sparc64/sun4u.o
CC sh4eb-softmmu/trace/generated-helpers.o
CC sparc-softmmu/target/sparc/win_helper.o
CC sh4-softmmu/hw/sh4/sh7750.o
LINK sh4eb-softmmu/qemu-system-sh4eb
CC sparc64-softmmu/hw/sparc64/niagara.o
CC sparc-softmmu/target/sparc/mmu_helper.o
CC sparc64-softmmu/target/sparc/machine.o
CC sh4-softmmu/hw/sh4/sh7750_regnames.o
CC sparc-softmmu/target/sparc/ldst_helper.o
CC sparc64-softmmu/target/sparc/monitor.o
CC sh4-softmmu/hw/sh4/sh_pci.o
CC sparc64-softmmu/target/sparc/translate.o
CC sparc-softmmu/target/sparc/int32_helper.o
CC sh4-softmmu/target/sh4/translate.o
CC sparc-softmmu/target/sparc/gdbstub.o
GEN trace/generated-helpers.c
CC sh4-softmmu/target/sh4/op_helper.o
CC sparc-softmmu/trace/control-target.o
CC sparc64-softmmu/target/sparc/helper.o
CC sparc-softmmu/trace/generated-helpers.o
CC sh4-softmmu/target/sh4/helper.o
LINK sparc-softmmu/qemu-system-sparc
CC sparc64-softmmu/target/sparc/cpu.o
CC sh4-softmmu/target/sh4/cpu.o
GEN tricore-softmmu/hmp-commands.h
CC sh4-softmmu/target/sh4/monitor.o
GEN tricore-softmmu/hmp-commands-info.h
GEN tricore-softmmu/config-target.h
CC sparc64-softmmu/target/sparc/fop_helper.o
CC tricore-softmmu/exec.o
CC sh4-softmmu/target/sh4/gdbstub.o
CC sparc64-softmmu/target/sparc/cc_helper.o
GEN trace/generated-helpers.c
CC sh4-softmmu/trace/control-target.o
CC sparc64-softmmu/target/sparc/win_helper.o
CC sh4-softmmu/trace/generated-helpers.o
CC sparc64-softmmu/target/sparc/mmu_helper.o
LINK sh4-softmmu/qemu-system-sh4
CC sparc64-softmmu/target/sparc/ldst_helper.o
GEN unicore32-softmmu/hmp-commands.h
GEN unicore32-softmmu/hmp-commands-info.h
CC tricore-softmmu/tcg/tcg.o
CC sparc64-softmmu/target/sparc/int64_helper.o
GEN unicore32-softmmu/config-target.h
CC unicore32-softmmu/exec.o
CC sparc64-softmmu/target/sparc/vis_helper.o
CC sparc64-softmmu/target/sparc/gdbstub.o
GEN trace/generated-helpers.c
CC sparc64-softmmu/trace/control-target.o
GEN x86_64-softmmu/hmp-commands.h
GEN x86_64-softmmu/hmp-commands-info.h
CC tricore-softmmu/tcg/tcg-op.o
GEN x86_64-softmmu/config-target.h
CC sparc64-softmmu/trace/generated-helpers.o
CC x86_64-softmmu/exec.o
CC unicore32-softmmu/tcg/tcg.o
LINK sparc64-softmmu/qemu-system-sparc64
CC tricore-softmmu/tcg/optimize.o
CC x86_64-softmmu/tcg/tcg.o
CC unicore32-softmmu/tcg/tcg-op.o
CC unicore32-softmmu/tcg/optimize.o
CC tricore-softmmu/tcg/tcg-common.o
CC tricore-softmmu/fpu/softfloat.o
CC unicore32-softmmu/tcg/tcg-common.o
CC x86_64-softmmu/tcg/tcg-op.o
CC unicore32-softmmu/fpu/softfloat.o
GEN xtensaeb-softmmu/hmp-commands.h
GEN xtensaeb-softmmu/hmp-commands-info.h
GEN xtensaeb-softmmu/config-target.h
CC xtensaeb-softmmu/exec.o
CC tricore-softmmu/disas.o
CC x86_64-softmmu/tcg/optimize.o
CC tricore-softmmu/arch_init.o
CC unicore32-softmmu/disas.o
CC tricore-softmmu/cpus.o
CC unicore32-softmmu/arch_init.o
CC xtensaeb-softmmu/tcg/tcg.o
CC unicore32-softmmu/cpus.o
CC x86_64-softmmu/tcg/tcg-common.o
CC tricore-softmmu/monitor.o
CC x86_64-softmmu/fpu/softfloat.o
CC unicore32-softmmu/monitor.o
CC xtensaeb-softmmu/tcg/tcg-op.o
CC tricore-softmmu/gdbstub.o
CC tricore-softmmu/balloon.o
CC tricore-softmmu/ioport.o
CC unicore32-softmmu/gdbstub.o
CC unicore32-softmmu/balloon.o
CC x86_64-softmmu/disas.o
CC xtensaeb-softmmu/tcg/optimize.o
CC tricore-softmmu/numa.o
CC unicore32-softmmu/ioport.o
GEN x86_64-softmmu/gdbstub-xml.c
CC tricore-softmmu/qtest.o
CC unicore32-softmmu/numa.o
CC tricore-softmmu/memory.o
CC unicore32-softmmu/qtest.o
CC x86_64-softmmu/arch_init.o
CC xtensaeb-softmmu/tcg/tcg-common.o
CC x86_64-softmmu/cpus.o
CC xtensaeb-softmmu/fpu/softfloat.o
CC unicore32-softmmu/memory.o
CC x86_64-softmmu/monitor.o
CC tricore-softmmu/memory_mapping.o
CC tricore-softmmu/dump.o
CC tricore-softmmu/migration/ram.o
CC unicore32-softmmu/memory_mapping.o
CC x86_64-softmmu/gdbstub.o
CC xtensaeb-softmmu/disas.o
CC unicore32-softmmu/dump.o
CC tricore-softmmu/accel/accel.o
CC xtensaeb-softmmu/arch_init.o
CC x86_64-softmmu/balloon.o
CC tricore-softmmu/accel/stubs/hax-stub.o
CC xtensaeb-softmmu/cpus.o
CC unicore32-softmmu/migration/ram.o
CC tricore-softmmu/accel/stubs/kvm-stub.o
CC x86_64-softmmu/ioport.o
CC tricore-softmmu/accel/tcg/tcg-all.o
CC x86_64-softmmu/numa.o
CC xtensaeb-softmmu/monitor.o
CC tricore-softmmu/accel/tcg/cputlb.o
CC x86_64-softmmu/qtest.o
CC unicore32-softmmu/accel/accel.o
CC unicore32-softmmu/accel/stubs/hax-stub.o
CC x86_64-softmmu/memory.o
CC unicore32-softmmu/accel/stubs/kvm-stub.o
CC unicore32-softmmu/accel/tcg/tcg-all.o
CC xtensaeb-softmmu/gdbstub.o
CC tricore-softmmu/accel/tcg/tcg-runtime.o
CC unicore32-softmmu/accel/tcg/cputlb.o
CC xtensaeb-softmmu/balloon.o
CC tricore-softmmu/accel/tcg/cpu-exec.o
CC x86_64-softmmu/memory_mapping.o
CC xtensaeb-softmmu/ioport.o
CC xtensaeb-softmmu/numa.o
CC tricore-softmmu/accel/tcg/cpu-exec-common.o
CC x86_64-softmmu/dump.o
CC tricore-softmmu/accel/tcg/translate-all.o
CC xtensaeb-softmmu/qtest.o
CC unicore32-softmmu/accel/tcg/tcg-runtime.o
CC x86_64-softmmu/migration/ram.o
CC xtensaeb-softmmu/memory.o
CC tricore-softmmu/accel/tcg/translator.o
CC unicore32-softmmu/accel/tcg/cpu-exec.o
CC tricore-softmmu/hw/core/generic-loader.o
CC unicore32-softmmu/accel/tcg/cpu-exec-common.o
CC x86_64-softmmu/accel/accel.o
CC tricore-softmmu/hw/core/null-machine.o
CC unicore32-softmmu/accel/tcg/translate-all.o
CC tricore-softmmu/hw/misc/mmio_interface.o
CC x86_64-softmmu/accel/stubs/hax-stub.o
CC xtensaeb-softmmu/memory_mapping.o
CC x86_64-softmmu/accel/stubs/kvm-stub.o
CC tricore-softmmu/hw/net/vhost_net.o
CC tricore-softmmu/hw/net/rocker/qmp-norocker.o
CC unicore32-softmmu/accel/tcg/translator.o
CC xtensaeb-softmmu/dump.o
CC x86_64-softmmu/accel/tcg/tcg-all.o
CC tricore-softmmu/hw/vfio/common.o
CC unicore32-softmmu/hw/core/generic-loader.o
CC x86_64-softmmu/accel/tcg/cputlb.o
CC unicore32-softmmu/hw/core/null-machine.o
CC xtensaeb-softmmu/migration/ram.o
CC tricore-softmmu/hw/vfio/platform.o
CC unicore32-softmmu/hw/misc/mmio_interface.o
CC unicore32-softmmu/hw/net/vhost_net.o
CC tricore-softmmu/hw/vfio/spapr.o
CC unicore32-softmmu/hw/net/rocker/qmp-norocker.o
CC tricore-softmmu/hw/tricore/tricore_testboard.o
CC x86_64-softmmu/accel/tcg/tcg-runtime.o
CC xtensaeb-softmmu/accel/accel.o
CC unicore32-softmmu/hw/vfio/common.o
CC tricore-softmmu/target/tricore/translate.o
CC xtensaeb-softmmu/accel/stubs/hax-stub.o
CC x86_64-softmmu/accel/tcg/cpu-exec.o
CC unicore32-softmmu/hw/vfio/platform.o
CC xtensaeb-softmmu/accel/stubs/kvm-stub.o
CC x86_64-softmmu/accel/tcg/cpu-exec-common.o
CC unicore32-softmmu/hw/vfio/spapr.o
CC x86_64-softmmu/accel/tcg/translate-all.o
CC xtensaeb-softmmu/accel/tcg/tcg-all.o
CC unicore32-softmmu/hw/unicore32/puv3.o
CC xtensaeb-softmmu/accel/tcg/cputlb.o
CC x86_64-softmmu/accel/tcg/translator.o
CC unicore32-softmmu/target/unicore32/translate.o
CC x86_64-softmmu/hw/9pfs/virtio-9p-device.o
CC xtensaeb-softmmu/accel/tcg/tcg-runtime.o
CC x86_64-softmmu/hw/block/virtio-blk.o
CC x86_64-softmmu/hw/block/dataplane/virtio-blk.o
CC unicore32-softmmu/target/unicore32/op_helper.o
CC xtensaeb-softmmu/accel/tcg/cpu-exec.o
CC tricore-softmmu/target/tricore/helper.o
CC x86_64-softmmu/hw/char/virtio-serial-bus.o
CC unicore32-softmmu/target/unicore32/helper.o
CC tricore-softmmu/target/tricore/cpu.o
CC xtensaeb-softmmu/accel/tcg/cpu-exec-common.o
CC tricore-softmmu/target/tricore/op_helper.o
CC unicore32-softmmu/target/unicore32/cpu.o
CC xtensaeb-softmmu/accel/tcg/translate-all.o
CC x86_64-softmmu/hw/core/generic-loader.o
CC unicore32-softmmu/target/unicore32/ucf64_helper.o
CC xtensaeb-softmmu/accel/tcg/translator.o
CC unicore32-softmmu/target/unicore32/softmmu.o
CC x86_64-softmmu/hw/core/null-machine.o
CC x86_64-softmmu/hw/display/vga.o
GEN trace/generated-helpers.c
CC unicore32-softmmu/trace/control-target.o
CC xtensaeb-softmmu/hw/core/generic-loader.o
CC tricore-softmmu/target/tricore/fpu_helper.o
CC unicore32-softmmu/trace/generated-helpers.o
CC xtensaeb-softmmu/hw/core/null-machine.o
GEN trace/generated-helpers.c
CC tricore-softmmu/trace/control-target.o
CC xtensaeb-softmmu/hw/misc/mmio_interface.o
LINK unicore32-softmmu/qemu-system-unicore32
CC x86_64-softmmu/hw/display/virtio-gpu.o
CC tricore-softmmu/trace/generated-helpers.o
CC xtensaeb-softmmu/hw/net/vhost_net.o
LINK tricore-softmmu/qemu-system-tricore
CC xtensaeb-softmmu/hw/net/rocker/qmp-norocker.o
CC xtensaeb-softmmu/hw/vfio/common.o
CC x86_64-softmmu/hw/display/virtio-gpu-3d.o
CC xtensaeb-softmmu/hw/vfio/platform.o
CC xtensaeb-softmmu/hw/vfio/spapr.o
CC x86_64-softmmu/hw/display/virtio-gpu-pci.o
CC xtensaeb-softmmu/hw/xtensa/pic_cpu.o
GEN xtensa-softmmu/hmp-commands.h
GEN aarch64-linux-user/config-target.h
CC aarch64-linux-user/exec.o
GEN xtensa-softmmu/hmp-commands-info.h
GEN xtensa-softmmu/config-target.h
CC xtensa-softmmu/exec.o
CC xtensaeb-softmmu/hw/xtensa/sim.o
CC x86_64-softmmu/hw/display/virtio-vga.o
CC aarch64-linux-user/tcg/tcg.o
CC xtensaeb-softmmu/hw/xtensa/xtfpga.o
CC x86_64-softmmu/hw/intc/apic.o
CC x86_64-softmmu/hw/intc/apic_common.o
CC xtensaeb-softmmu/target/xtensa/xtensa-semi.o
CC x86_64-softmmu/hw/intc/ioapic.o
CC xtensaeb-softmmu/target/xtensa/core-dc232b.o
In file included from /var/tmp/patchew-tester-tmp-9_mgu2zl/src/target/xtensa/core-dc232b.c:38:0:
/var/tmp/patchew-tester-tmp-9_mgu2zl/src/target/xtensa/core-dc232b/xtensa-modules.c:21:22: fatal error: ansidecl.h: No such file or directory
#include "ansidecl.h"
^
compilation terminated.
/var/tmp/patchew-tester-tmp-9_mgu2zl/src/rules.mak:66: recipe for target 'target/xtensa/core-dc232b.o' failed
make[1]: *** [target/xtensa/core-dc232b.o] Error 1
CC xtensa-softmmu/tcg/tcg.o
Makefile:374: recipe for target 'subdir-xtensaeb-softmmu' failed
make: *** [subdir-xtensaeb-softmmu] Error 2
make: *** Waiting for unfinished jobs....
CC xtensa-softmmu/tcg/tcg-op.o
CC x86_64-softmmu/hw/isa/lpc_ich9.o
CC aarch64-linux-user/tcg/tcg-op.o
CC x86_64-softmmu/hw/misc/vmport.o
CC x86_64-softmmu/hw/misc/ivshmem.o
CC aarch64-linux-user/tcg/optimize.o
CC xtensa-softmmu/tcg/optimize.o
CC x86_64-softmmu/hw/misc/pvpanic.o
CC x86_64-softmmu/hw/misc/mmio_interface.o
CC xtensa-softmmu/tcg/tcg-common.o
CC aarch64-linux-user/tcg/tcg-common.o
CC xtensa-softmmu/fpu/softfloat.o
CC xtensa-softmmu/disas.o
CC x86_64-softmmu/hw/net/virtio-net.o
CC aarch64-linux-user/fpu/softfloat.o
CC aarch64-linux-user/disas.o
CC x86_64-softmmu/hw/net/vhost_net.o
CC xtensa-softmmu/arch_init.o
CC x86_64-softmmu/hw/scsi/virtio-scsi.o
GEN aarch64-linux-user/gdbstub-xml.c
CC x86_64-softmmu/hw/scsi/virtio-scsi-dataplane.o
CC x86_64-softmmu/hw/scsi/vhost-scsi-common.o
CC x86_64-softmmu/hw/scsi/vhost-scsi.o
CC xtensa-softmmu/cpus.o
CC x86_64-softmmu/hw/scsi/vhost-user-scsi.o
CC aarch64-linux-user/gdbstub.o
CC x86_64-softmmu/hw/timer/mc146818rtc.o
CC x86_64-softmmu/hw/vfio/common.o
CC xtensa-softmmu/monitor.o
CC aarch64-linux-user/thunk.o
CC x86_64-softmmu/hw/vfio/pci.o
CC aarch64-linux-user/accel/stubs/hax-stub.o
CC x86_64-softmmu/hw/vfio/pci-quirks.o
CC aarch64-linux-user/accel/stubs/kvm-stub.o
CC xtensa-softmmu/gdbstub.o
CC aarch64-linux-user/accel/tcg/tcg-runtime.o
CC x86_64-softmmu/hw/vfio/platform.o
CC x86_64-softmmu/hw/vfio/spapr.o
CC xtensa-softmmu/balloon.o
CC aarch64-linux-user/accel/tcg/cpu-exec.o
CC xtensa-softmmu/ioport.o
CC x86_64-softmmu/hw/virtio/virtio.o
CC x86_64-softmmu/hw/virtio/virtio-balloon.o
CC xtensa-softmmu/numa.o
CC aarch64-linux-user/accel/tcg/cpu-exec-common.o
CC aarch64-linux-user/accel/tcg/translate-all.o
CC xtensa-softmmu/qtest.o
CC xtensa-softmmu/memory.o
CC x86_64-softmmu/hw/virtio/vhost.o
CC aarch64-linux-user/accel/tcg/translator.o
CC x86_64-softmmu/hw/virtio/vhost-backend.o
CC xtensa-softmmu/memory_mapping.o
CC aarch64-linux-user/accel/tcg/user-exec.o
CC x86_64-softmmu/hw/virtio/vhost-user.o
CC x86_64-softmmu/hw/virtio/vhost-vsock.o
CC aarch64-linux-user/accel/tcg/user-exec-stub.o
CC x86_64-softmmu/hw/virtio/virtio-crypto.o
CC xtensa-softmmu/dump.o
CC aarch64-linux-user/linux-user/main.o
CC xtensa-softmmu/migration/ram.o
CC x86_64-softmmu/hw/virtio/virtio-crypto-pci.o
CC aarch64-linux-user/linux-user/syscall.o
CC aarch64-linux-user/linux-user/strace.o
CC x86_64-softmmu/hw/i386/multiboot.o
CC x86_64-softmmu/hw/i386/pc.o
CC xtensa-softmmu/accel/accel.o
CC xtensa-softmmu/accel/stubs/hax-stub.o
CC aarch64-linux-user/linux-user/mmap.o
CC xtensa-softmmu/accel/stubs/kvm-stub.o
CC xtensa-softmmu/accel/tcg/tcg-all.o
CC x86_64-softmmu/hw/i386/pc_piix.o
CC xtensa-softmmu/accel/tcg/cputlb.o
CC xtensa-softmmu/accel/tcg/tcg-runtime.o
CC aarch64-linux-user/linux-user/signal.o
CC x86_64-softmmu/hw/i386/pc_q35.o
CC x86_64-softmmu/hw/i386/pc_sysfw.o
CC xtensa-softmmu/accel/tcg/cpu-exec.o
CC x86_64-softmmu/hw/i386/x86-iommu.o
CC xtensa-softmmu/accel/tcg/cpu-exec-common.o
CC x86_64-softmmu/hw/i386/intel_iommu.o
CC aarch64-linux-user/linux-user/elfload.o
CC aarch64-linux-user/linux-user/linuxload.o
CC xtensa-softmmu/accel/tcg/translate-all.o
CC xtensa-softmmu/accel/tcg/translator.o
CC xtensa-softmmu/hw/core/generic-loader.o
CC aarch64-linux-user/linux-user/uaccess.o
CC x86_64-softmmu/hw/i386/amd_iommu.o
CC x86_64-softmmu/hw/i386/kvmvapic.o
CC xtensa-softmmu/hw/core/null-machine.o
CC aarch64-linux-user/linux-user/uname.o
CC xtensa-softmmu/hw/misc/mmio_interface.o
CC xtensa-softmmu/hw/net/vhost_net.o
CC x86_64-softmmu/hw/i386/acpi-build.o
CCAS aarch64-linux-user/linux-user/safe-syscall.o
CC x86_64-softmmu/hw/i386/pci-assign-load-rom.o
CC aarch64-linux-user/linux-user/flatload.o
CC xtensa-softmmu/hw/net/rocker/qmp-norocker.o
CC aarch64-linux-user/target/arm/arm-semi.o
CC xtensa-softmmu/hw/vfio/common.o
CC aarch64-linux-user/target/arm/kvm-stub.o
CC x86_64-softmmu/target/i386/helper.o
CC x86_64-softmmu/target/i386/cpu.o
CC aarch64-linux-user/target/arm/translate.o
CC xtensa-softmmu/hw/vfio/platform.o
CC xtensa-softmmu/hw/vfio/spapr.o
CC x86_64-softmmu/target/i386/gdbstub.o
CC xtensa-softmmu/hw/xtensa/pic_cpu.o
CC x86_64-softmmu/target/i386/xsave_helper.o
CC xtensa-softmmu/hw/xtensa/sim.o
CC aarch64-linux-user/target/arm/op_helper.o
CC x86_64-softmmu/target/i386/translate.o
CC xtensa-softmmu/hw/xtensa/xtfpga.o
CC xtensa-softmmu/target/xtensa/xtensa-semi.o
CC x86_64-softmmu/target/i386/bpt_helper.o
CC xtensa-softmmu/target/xtensa/core-dc232b.o
CC aarch64-linux-user/target/arm/helper.o
In file included from /var/tmp/patchew-tester-tmp-9_mgu2zl/src/target/xtensa/core-dc232b.c:38:0:
/var/tmp/patchew-tester-tmp-9_mgu2zl/src/target/xtensa/core-dc232b/xtensa-modules.c:21:22: fatal error: ansidecl.h: No such file or directory
#include "ansidecl.h"
^
compilation terminated.
/var/tmp/patchew-tester-tmp-9_mgu2zl/src/rules.mak:66: recipe for target 'target/xtensa/core-dc232b.o' failed
make[1]: *** [target/xtensa/core-dc232b.o] Error 1
Makefile:374: recipe for target 'subdir-xtensa-softmmu' failed
make: *** [subdir-xtensa-softmmu] Error 2
CC aarch64-linux-user/target/arm/cpu.o
CC x86_64-softmmu/target/i386/cc_helper.o
CC x86_64-softmmu/target/i386/excp_helper.o
CC aarch64-linux-user/target/arm/neon_helper.o
CC aarch64-linux-user/target/arm/iwmmxt_helper.o
CC x86_64-softmmu/target/i386/fpu_helper.o
CC x86_64-softmmu/target/i386/int_helper.o
CC aarch64-linux-user/target/arm/gdbstub.o
CC aarch64-linux-user/target/arm/cpu64.o
CC x86_64-softmmu/target/i386/mem_helper.o
CC aarch64-linux-user/target/arm/translate-a64.o
CC aarch64-linux-user/target/arm/helper-a64.o
CC aarch64-linux-user/target/arm/gdbstub64.o
CC aarch64-linux-user/target/arm/crypto_helper.o
GEN trace/generated-helpers.c
CC aarch64-linux-user/trace/control-target.o
CC aarch64-linux-user/gdbstub-xml.o
CC aarch64-linux-user/trace/generated-helpers.o
CC x86_64-softmmu/target/i386/misc_helper.o
CC x86_64-softmmu/target/i386/mpx_helper.o
CC x86_64-softmmu/target/i386/seg_helper.o
CC x86_64-softmmu/target/i386/smm_helper.o
CC x86_64-softmmu/target/i386/svm_helper.o
CC x86_64-softmmu/target/i386/machine.o
CC x86_64-softmmu/target/i386/arch_memory_mapping.o
CC x86_64-softmmu/target/i386/arch_dump.o
CC x86_64-softmmu/target/i386/monitor.o
CC x86_64-softmmu/target/i386/kvm-stub.o
GEN trace/generated-helpers.c
CC x86_64-softmmu/trace/control-target.o
CC x86_64-softmmu/gdbstub-xml.o
LINK aarch64-linux-user/qemu-aarch64
CC x86_64-softmmu/trace/generated-helpers.o
LINK x86_64-softmmu/qemu-system-x86_64
=== OUTPUT END ===
Test command exited with code: 2
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org
© 2016 - 2026 Red Hat, Inc.