[Qemu-devel] [PATCH v2 00/16] target/xtensa: switch to libisa

Max Filippov posted 16 patches 6 years, 4 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1513661932-6849-1-git-send-email-jcmvbkbc@gmail.com
Test checkpatch failed
Test docker passed
Test ppc passed
Test s390x passed
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 | 14105 +++++++++++++++++++++++++
target/xtensa/core-dc233c.c                |     4 +
target/xtensa/core-dc233c/xtensa-modules.c | 15232 +++++++++++++++++++++++++++
target/xtensa/core-fsf.c                   |     5 +
target/xtensa/core-fsf/xtensa-modules.c    |  9841 +++++++++++++++++
target/xtensa/cpu.c                        |     9 +
target/xtensa/cpu.h                        |    31 +
target/xtensa/helper.c                     |    37 +
target/xtensa/import_core.sh               |    15 +
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, 45949 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
[Qemu-devel] [PATCH v2 00/16] target/xtensa: switch to libisa
Posted by Max Filippov 6 years, 4 months ago
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

Changes v1->v2:
- add sed transformation to target/xtensa/import-core.sh that drops
  #include "ansidecl.h" from imported xtensa-modules.c;
- drop #include "ansidecl.h" from xtensa-modules.c for converted cores;
- reimplement translate_const16 using tcg_gen_deposit_i32.

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 | 14105 +++++++++++++++++++++++++
 target/xtensa/core-dc233c.c                |     4 +
 target/xtensa/core-dc233c/xtensa-modules.c | 15232 +++++++++++++++++++++++++++
 target/xtensa/core-fsf.c                   |     5 +
 target/xtensa/core-fsf/xtensa-modules.c    |  9841 +++++++++++++++++
 target/xtensa/cpu.c                        |     9 +
 target/xtensa/cpu.h                        |    31 +
 target/xtensa/helper.c                     |    37 +
 target/xtensa/import_core.sh               |    15 +
 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, 45949 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


Re: [Qemu-devel] [PATCH v2 00/16] target/xtensa: switch to libisa
Posted by no-reply@patchew.org 6 years, 4 months ago
Hi,

This series seems to have some coding style problems. See output below for
more information:

Type: series
Message-id: 1513661932-6849-1-git-send-email-jcmvbkbc@gmail.com
Subject: [Qemu-devel] [PATCH v2 00/16] target/xtensa: switch to libisa

=== 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
Switched to a new branch 'test'
b534f250e6 target/xtensa: implement disassembler
530dc51f77 target/xtensa: implement const16
d44669750a target/xtensa: implement GPIO32
c6afadaf5d target/xtensa: implement salt/saltu
33e9a3b2ca target/xtensa: add internal/noop SRs and opcodes
850aa3f5a8 target/xtensa: drop DisasContext::litbase
502d1fb2a1 target/xtensa: tests: fix memctl SR test
76e8f372d2 target/xtensa: use libisa for instruction decoding
87f76acaa3 target/xtensa: switch fsf to libisa
3f807748d8 target/xtensa: switch dc233c to libisa
ced46c8619 target/xtensa: switch dc232b to libisa
923b9de498 target/xtensa: update import_core.sh script for libisa
72a78938c6 target/xtensa: extract FPU2000 opcode translators
da54a4a3ae target/xtensa: extract core opcode translators
87f6ffd435 target/xtensa: import libisa source
acff47a26d 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
#29: FILE: target/xtensa/import_core.sh:35:
+        -e '/^Slot_[a-zA-Z0-9_]\+_decode (const xtensa_insnbuf insn)/,/^}/s/^  return 0;$/  return XTENSA_UNDEFINED;/' \

total: 1 errors, 0 warnings, 33 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
#62: FILE: target/xtensa/core-dc232b/xtensa-modules.c:24:
+
 ^

ERROR: trailing whitespace
#62: FILE: target/xtensa/core-dc232b/xtensa-modules.c:24:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#142: FILE: target/xtensa/core-dc232b/xtensa-modules.c:104:
+
 ^

ERROR: trailing whitespace
#142: FILE: target/xtensa/core-dc232b/xtensa-modules.c:104:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:262:
+
 ^

ERROR: trailing whitespace
#300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:262:
+^L$

ERROR: code indent should never use tabs
#1549: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1511:
+^I^I    uint32 val ATTRIBUTE_UNUSED)$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1564:
+
 ^

ERROR: trailing whitespace
#1602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1564:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1609: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1571:
+
 ^

ERROR: trailing whitespace
#1609: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1571:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1617: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1579:
+
 ^

ERROR: trailing whitespace
#1617: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1579:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1624: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1586:
+
 ^

ERROR: trailing whitespace
#1624: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1586:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1690: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1652:
+
 ^

ERROR: trailing whitespace
#1690: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1652:
+^L$

ERROR: line over 90 characters
#1924: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1886:
+  simm7_0 = ((((-((((imm7_0 >> 6) & 1)) & (((imm7_0 >> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0;

ERROR: that open brace { should be on the previous line
#1988: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1950:
+  switch (ai4const_0)
+    {

ERROR: trailing statements should be on next line
#1990: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1952:
+    case 0xffffffff: t_0 = 0; break;

ERROR: trailing statements should be on next line
#1991: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1953:
+    case 0x1: t_0 = 0x1; break;

ERROR: trailing statements should be on next line
#1992: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1954:
+    case 0x2: t_0 = 0x2; break;

ERROR: trailing statements should be on next line
#1993: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1955:
+    case 0x3: t_0 = 0x3; break;

ERROR: trailing statements should be on next line
#1994: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1956:
+    case 0x4: t_0 = 0x4; break;

ERROR: trailing statements should be on next line
#1995: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1957:
+    case 0x5: t_0 = 0x5; break;

ERROR: trailing statements should be on next line
#1996: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1958:
+    case 0x6: t_0 = 0x6; break;

ERROR: trailing statements should be on next line
#1997: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1959:
+    case 0x7: t_0 = 0x7; break;

ERROR: trailing statements should be on next line
#1998: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1960:
+    case 0x8: t_0 = 0x8; break;

ERROR: trailing statements should be on next line
#1999: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1961:
+    case 0x9: t_0 = 0x9; break;

ERROR: trailing statements should be on next line
#2000: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1962:
+    case 0xa: t_0 = 0xa; break;

ERROR: trailing statements should be on next line
#2001: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1963:
+    case 0xb: t_0 = 0xb; break;

ERROR: trailing statements should be on next line
#2002: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1964:
+    case 0xc: t_0 = 0xc; break;

ERROR: trailing statements should be on next line
#2003: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1965:
+    case 0xd: t_0 = 0xd; break;

ERROR: trailing statements should be on next line
#2004: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1966:
+    case 0xe: t_0 = 0xe; break;

ERROR: trailing statements should be on next line
#2005: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1967:
+    default: t_0 = 0xf; break;

ERROR: that open brace { should be on the previous line
#2026: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1988:
+  switch (b4const_0)
+    {

ERROR: trailing statements should be on next line
#2028: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1990:
+    case 0xffffffff: r_0 = 0; break;

ERROR: trailing statements should be on next line
#2029: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1991:
+    case 0x1: r_0 = 0x1; break;

ERROR: trailing statements should be on next line
#2030: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1992:
+    case 0x2: r_0 = 0x2; break;

ERROR: trailing statements should be on next line
#2031: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1993:
+    case 0x3: r_0 = 0x3; break;

ERROR: trailing statements should be on next line
#2032: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1994:
+    case 0x4: r_0 = 0x4; break;

ERROR: trailing statements should be on next line
#2033: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1995:
+    case 0x5: r_0 = 0x5; break;

ERROR: trailing statements should be on next line
#2034: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1996:
+    case 0x6: r_0 = 0x6; break;

ERROR: trailing statements should be on next line
#2035: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1997:
+    case 0x7: r_0 = 0x7; break;

ERROR: trailing statements should be on next line
#2036: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1998:
+    case 0x8: r_0 = 0x8; break;

ERROR: trailing statements should be on next line
#2037: FILE: target/xtensa/core-dc232b/xtensa-modules.c:1999:
+    case 0xa: r_0 = 0x9; break;

ERROR: trailing statements should be on next line
#2038: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2000:
+    case 0xc: r_0 = 0xa; break;

ERROR: trailing statements should be on next line
#2039: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2001:
+    case 0x10: r_0 = 0xb; break;

ERROR: trailing statements should be on next line
#2040: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2002:
+    case 0x20: r_0 = 0xc; break;

ERROR: trailing statements should be on next line
#2041: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2003:
+    case 0x40: r_0 = 0xd; break;

ERROR: trailing statements should be on next line
#2042: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2004:
+    case 0x80: r_0 = 0xe; break;

ERROR: trailing statements should be on next line
#2043: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2005:
+    default: r_0 = 0xf; break;

ERROR: that open brace { should be on the previous line
#2064: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2026:
+  switch (b4constu_0)
+    {

ERROR: trailing statements should be on next line
#2066: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2028:
+    case 0x8000: r_0 = 0; break;

ERROR: trailing statements should be on next line
#2067: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2029:
+    case 0x10000: r_0 = 0x1; break;

ERROR: trailing statements should be on next line
#2068: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2030:
+    case 0x2: r_0 = 0x2; break;

ERROR: trailing statements should be on next line
#2069: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2031:
+    case 0x3: r_0 = 0x3; break;

ERROR: trailing statements should be on next line
#2070: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2032:
+    case 0x4: r_0 = 0x4; break;

ERROR: trailing statements should be on next line
#2071: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2033:
+    case 0x5: r_0 = 0x5; break;

ERROR: trailing statements should be on next line
#2072: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2034:
+    case 0x6: r_0 = 0x6; break;

ERROR: trailing statements should be on next line
#2073: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2035:
+    case 0x7: r_0 = 0x7; break;

ERROR: trailing statements should be on next line
#2074: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2036:
+    case 0x8: r_0 = 0x8; break;

ERROR: trailing statements should be on next line
#2075: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2037:
+    case 0xa: r_0 = 0x9; break;

ERROR: trailing statements should be on next line
#2076: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2038:
+    case 0xc: r_0 = 0xa; break;

ERROR: trailing statements should be on next line
#2077: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2039:
+    case 0x10: r_0 = 0xb; break;

ERROR: trailing statements should be on next line
#2078: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2040:
+    case 0x20: r_0 = 0xc; break;

ERROR: trailing statements should be on next line
#2079: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2041:
+    case 0x40: r_0 = 0xd; break;

ERROR: trailing statements should be on next line
#2080: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2042:
+    case 0x80: r_0 = 0xe; break;

ERROR: trailing statements should be on next line
#2081: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2043:
+    default: r_0 = 0xf; break;

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#2896: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2858:
+
 ^

ERROR: trailing whitespace
#2896: FILE: target/xtensa/core-dc232b/xtensa-modules.c:2858:
+^L$

WARNING: line over 80 characters
#6343: FILE: target/xtensa/core-dc232b/xtensa-modules.c:6305:
+    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
#6352: FILE: target/xtensa/core-dc232b/xtensa-modules.c:6314:
+
 ^

ERROR: trailing whitespace
#6352: FILE: target/xtensa/core-dc232b/xtensa-modules.c:6314:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#10815: FILE: target/xtensa/core-dc232b/xtensa-modules.c:10777:
+
 ^

ERROR: trailing whitespace
#10815: FILE: target/xtensa/core-dc232b/xtensa-modules.c:10777:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#12159: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12121:
+
 ^

ERROR: trailing whitespace
#12159: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12121:
+^L$

ERROR: that open brace { should be on the previous line
#12165: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12127:
+  switch (Field_op0_Slot_inst_get (insn))
+    {

ERROR: that open brace { should be on the previous line
#12168: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12130:
+      switch (Field_op1_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#12169: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12131:
+^I{$

ERROR: code indent should never use tabs
#12170: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12132:
+^Icase 0:$

ERROR: code indent should never use tabs
#12171: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12133:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12171: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12133:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#12172: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12134:
+^I    {$

ERROR: code indent should never use tabs
#12173: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12135:
+^I    case 0:$

ERROR: code indent should never use tabs
#12174: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12136:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12174: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12136:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12175: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12137:
+^I^I{$

ERROR: code indent should never use tabs
#12176: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12138:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12177: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12139:
+^I^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12177: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12139:
+		  switch (Field_m_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#12178: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12140:
+^I^I    {$

ERROR: code indent should never use tabs
#12179: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12141:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#12180: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12142:
+^I^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#12180: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12142:
+		      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#12181: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12143:
+^I^I^I  Field_n_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#12182: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12144:
+^I^I^Ireturn 79; /* ill */$

ERROR: code indent should never use tabs
#12183: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12145:
+^I^I      break;$

ERROR: code indent should never use tabs
#12184: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12146:
+^I^I    case 2:$

ERROR: code indent should never use tabs
#12185: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12147:
+^I^I      switch (Field_n_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12185: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12147:
+		      switch (Field_n_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#12186: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12148:
+^I^I^I{$

ERROR: code indent should never use tabs
#12187: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12149:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#12188: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12150:
+^I^I^I  return 98; /* ret */$

ERROR: code indent should never use tabs
#12189: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12151:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#12190: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12152:
+^I^I^I  return 14; /* retw */$

ERROR: code indent should never use tabs
#12191: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12153:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#12192: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12154:
+^I^I^I  return 81; /* jx */$

ERROR: code indent should never use tabs
#12193: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12155:
+^I^I^I}$

ERROR: code indent should never use tabs
#12194: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12156:
+^I^I      break;$

ERROR: code indent should never use tabs
#12195: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12157:
+^I^I    case 3:$

ERROR: code indent should never use tabs
#12196: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12158:
+^I^I      switch (Field_n_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12196: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12158:
+		      switch (Field_n_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#12197: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12159:
+^I^I^I{$

ERROR: code indent should never use tabs
#12198: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12160:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#12199: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12161:
+^I^I^I  return 77; /* callx0 */$

ERROR: code indent should never use tabs
#12200: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12162:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#12201: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12163:
+^I^I^I  return 10; /* callx4 */$

ERROR: code indent should never use tabs
#12202: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12164:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#12203: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12165:
+^I^I^I  return 9; /* callx8 */$

ERROR: code indent should never use tabs
#12204: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12166:
+^I^I^Icase 3:$

ERROR: code indent should never use tabs
#12205: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12167:
+^I^I^I  return 8; /* callx12 */$

ERROR: code indent should never use tabs
#12206: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12168:
+^I^I^I}$

ERROR: code indent should never use tabs
#12207: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12169:
+^I^I      break;$

ERROR: code indent should never use tabs
#12208: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12170:
+^I^I    }$

ERROR: code indent should never use tabs
#12209: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12171:
+^I^I  break;$

ERROR: code indent should never use tabs
#12210: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12172:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12211: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12173:
+^I^I  return 12; /* movsp */$

ERROR: code indent should never use tabs
#12212: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12174:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12175:
+^I^I  if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: that open brace { should be on the previous line
#12213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12175:
+		  if (Field_s_Slot_inst_get (insn) == 0)
+		    {

ERROR: suspect code indent for conditional statements (18, 22)
#12213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12175:
+		  if (Field_s_Slot_inst_get (insn) == 0)
+		    {

ERROR: code indent should never use tabs
#12214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12176:
+^I^I    {$

ERROR: code indent should never use tabs
#12215: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12177:
+^I^I      switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12215: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12177:
+		      switch (Field_t_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#12216: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12178:
+^I^I^I{$

ERROR: code indent should never use tabs
#12217: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12179:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#12218: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12180:
+^I^I^I  return 116; /* isync */$

ERROR: code indent should never use tabs
#12219: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12181:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#12220: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12182:
+^I^I^I  return 117; /* rsync */$

ERROR: code indent should never use tabs
#12221: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12183:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#12222: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12184:
+^I^I^I  return 118; /* esync */$

ERROR: code indent should never use tabs
#12223: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12185:
+^I^I^Icase 3:$

ERROR: code indent should never use tabs
#12224: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12186:
+^I^I^I  return 119; /* dsync */$

ERROR: code indent should never use tabs
#12225: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12187:
+^I^I^Icase 8:$

ERROR: code indent should never use tabs
#12226: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12188:
+^I^I^I  return 0; /* excw */$

ERROR: code indent should never use tabs
#12227: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12189:
+^I^I^Icase 12:$

ERROR: code indent should never use tabs
#12228: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12190:
+^I^I^I  return 114; /* memw */$

ERROR: code indent should never use tabs
#12229: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12191:
+^I^I^Icase 13:$

ERROR: code indent should never use tabs
#12230: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12192:
+^I^I^I  return 115; /* extw */$

ERROR: code indent should never use tabs
#12231: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12193:
+^I^I^Icase 15:$

ERROR: code indent should never use tabs
#12232: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12194:
+^I^I^I  return 97; /* nop */$

ERROR: code indent should never use tabs
#12233: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12195:
+^I^I^I}$

ERROR: code indent should never use tabs
#12234: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12196:
+^I^I    }$

ERROR: code indent should never use tabs
#12235: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12197:
+^I^I  break;$

ERROR: code indent should never use tabs
#12236: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12198:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12237: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12199:
+^I^I  switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12237: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12199:
+		  switch (Field_t_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#12238: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12200:
+^I^I    {$

ERROR: code indent should never use tabs
#12239: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12201:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#12240: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12202:
+^I^I      switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12240: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12202:
+		      switch (Field_s_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#12241: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12203:
+^I^I^I{$

ERROR: code indent should never use tabs
#12242: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12204:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#12243: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12205:
+^I^I^I  return 1; /* rfe */$

ERROR: code indent should never use tabs
#12244: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12206:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#12245: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12207:
+^I^I^I  return 2; /* rfde */$

ERROR: code indent should never use tabs
#12246: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12208:
+^I^I^Icase 4:$

ERROR: code indent should never use tabs
#12247: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12209:
+^I^I^I  return 16; /* rfwo */$

ERROR: code indent should never use tabs
#12248: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12210:
+^I^I^Icase 5:$

ERROR: code indent should never use tabs
#12249: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12211:
+^I^I^I  return 17; /* rfwu */$

ERROR: code indent should never use tabs
#12250: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12212:
+^I^I^I}$

ERROR: code indent should never use tabs
#12251: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12213:
+^I^I      break;$

ERROR: code indent should never use tabs
#12252: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12214:
+^I^I    case 1:$

ERROR: code indent should never use tabs
#12253: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12215:
+^I^I      return 310; /* rfi */$

ERROR: code indent should never use tabs
#12254: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12216:
+^I^I    }$

ERROR: code indent should never use tabs
#12255: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12217:
+^I^I  break;$

ERROR: code indent should never use tabs
#12256: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12218:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#12257: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12219:
+^I^I  return 318; /* break */$

ERROR: code indent should never use tabs
#12258: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12220:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#12259: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12221:
+^I^I  switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12259: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12221:
+		  switch (Field_s_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#12260: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12222:
+^I^I    {$

ERROR: code indent should never use tabs
#12261: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12223:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#12262: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12224:
+^I^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12262: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12224:
+		      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12263: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12225:
+^I^I^Ireturn 3; /* syscall */$

ERROR: code indent should never use tabs
#12264: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12226:
+^I^I      break;$

ERROR: code indent should never use tabs
#12265: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12227:
+^I^I    case 1:$

ERROR: code indent should never use tabs
#12266: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12228:
+^I^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12266: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12228:
+		      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12267: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12229:
+^I^I^Ireturn 4; /* simcall */$

ERROR: code indent should never use tabs
#12268: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12230:
+^I^I      break;$

ERROR: code indent should never use tabs
#12269: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12231:
+^I^I    }$

ERROR: code indent should never use tabs
#12270: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12232:
+^I^I  break;$

ERROR: code indent should never use tabs
#12271: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12233:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#12272: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12234:
+^I^I  return 120; /* rsil */$

ERROR: code indent should never use tabs
#12273: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12235:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#12274: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12236:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12274: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12236:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12275: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12237:
+^I^I    return 311; /* waiti */$

ERROR: code indent should never use tabs
#12276: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12238:
+^I^I  break;$

ERROR: code indent should never use tabs
#12277: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12239:
+^I^I}$

ERROR: code indent should never use tabs
#12278: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12240:
+^I      break;$

ERROR: code indent should never use tabs
#12279: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12241:
+^I    case 1:$

ERROR: code indent should never use tabs
#12280: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12242:
+^I      return 49; /* and */$

ERROR: code indent should never use tabs
#12281: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12243:
+^I    case 2:$

ERROR: code indent should never use tabs
#12282: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12244:
+^I      return 50; /* or */$

ERROR: code indent should never use tabs
#12283: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12245:
+^I    case 3:$

ERROR: code indent should never use tabs
#12284: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12246:
+^I      return 51; /* xor */$

ERROR: code indent should never use tabs
#12285: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12247:
+^I    case 4:$

ERROR: code indent should never use tabs
#12286: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12248:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12286: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12248:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12287: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12249:
+^I^I{$

ERROR: code indent should never use tabs
#12288: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12250:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12289: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12251:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12289: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12251:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12290: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12252:
+^I^I    return 102; /* ssr */$

ERROR: code indent should never use tabs
#12291: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12253:
+^I^I  break;$

ERROR: code indent should never use tabs
#12292: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12254:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12293: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12255:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12293: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12255:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12294: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12256:
+^I^I    return 103; /* ssl */$

ERROR: code indent should never use tabs
#12295: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12257:
+^I^I  break;$

ERROR: code indent should never use tabs
#12296: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12258:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12297: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12259:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12297: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12259:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12298: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12260:
+^I^I    return 104; /* ssa8l */$

ERROR: code indent should never use tabs
#12299: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12261:
+^I^I  break;$

ERROR: code indent should never use tabs
#12300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12262:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12263:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12263:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12302: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12264:
+^I^I    return 105; /* ssa8b */$

ERROR: code indent should never use tabs
#12303: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12265:
+^I^I  break;$

ERROR: code indent should never use tabs
#12304: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12266:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#12305: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12267:
+^I^I  if (Field_thi3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12305: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12267:
+		  if (Field_thi3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12306: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12268:
+^I^I    return 106; /* ssai */$

ERROR: code indent should never use tabs
#12307: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12269:
+^I^I  break;$

ERROR: code indent should never use tabs
#12308: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12270:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#12309: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12271:
+^I^I  if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12309: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12271:
+		  if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12310: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12272:
+^I^I    return 13; /* rotw */$

ERROR: code indent should never use tabs
#12311: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12273:
+^I^I  break;$

ERROR: code indent should never use tabs
#12312: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12274:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#12313: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12275:
+^I^I  return 426; /* nsa */$

ERROR: code indent should never use tabs
#12314: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12276:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#12315: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12277:
+^I^I  return 427; /* nsau */$

ERROR: code indent should never use tabs
#12316: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12278:
+^I^I}$

ERROR: code indent should never use tabs
#12317: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12279:
+^I      break;$

ERROR: code indent should never use tabs
#12318: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12280:
+^I    case 5:$

ERROR: code indent should never use tabs
#12319: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12281:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12319: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12281:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12320: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12282:
+^I^I{$

ERROR: code indent should never use tabs
#12321: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12283:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12322: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12284:
+^I^I  return 416; /* hwwitlba */$

ERROR: code indent should never use tabs
#12323: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12285:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12324: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12286:
+^I^I  return 412; /* ritlb0 */$

ERROR: code indent should never use tabs
#12325: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12287:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#12326: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12288:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12326: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12288:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12327: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12289:
+^I^I    return 410; /* iitlb */$

ERROR: code indent should never use tabs
#12328: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12290:
+^I^I  break;$

ERROR: code indent should never use tabs
#12329: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12291:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#12330: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12292:
+^I^I  return 411; /* pitlb */$

ERROR: code indent should never use tabs
#12331: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12293:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#12332: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12294:
+^I^I  return 414; /* witlb */$

ERROR: code indent should never use tabs
#12333: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12295:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#12334: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12296:
+^I^I  return 413; /* ritlb1 */$

ERROR: code indent should never use tabs
#12335: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12297:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#12336: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12298:
+^I^I  return 417; /* hwwdtlba */$

ERROR: code indent should never use tabs
#12337: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12299:
+^I^Icase 11:$

ERROR: code indent should never use tabs
#12338: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12300:
+^I^I  return 407; /* rdtlb0 */$

ERROR: code indent should never use tabs
#12339: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12301:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#12340: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12302:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12340: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12302:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12341: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12303:
+^I^I    return 405; /* idtlb */$

ERROR: code indent should never use tabs
#12342: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12304:
+^I^I  break;$

ERROR: code indent should never use tabs
#12343: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12305:
+^I^Icase 13:$

ERROR: code indent should never use tabs
#12344: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12306:
+^I^I  return 406; /* pdtlb */$

ERROR: code indent should never use tabs
#12345: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12307:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#12346: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12308:
+^I^I  return 409; /* wdtlb */$

ERROR: code indent should never use tabs
#12347: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12309:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#12348: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12310:
+^I^I  return 408; /* rdtlb1 */$

ERROR: code indent should never use tabs
#12349: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12311:
+^I^I}$

ERROR: code indent should never use tabs
#12350: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12312:
+^I      break;$

ERROR: code indent should never use tabs
#12351: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12313:
+^I    case 6:$

ERROR: code indent should never use tabs
#12352: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12314:
+^I      switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12352: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12314:
+	      switch (Field_s_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12315:
+^I^I{$

ERROR: code indent should never use tabs
#12354: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12316:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12355: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12317:
+^I^I  return 95; /* neg */$

ERROR: code indent should never use tabs
#12356: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12318:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12357: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12319:
+^I^I  return 96; /* abs */$

ERROR: code indent should never use tabs
#12358: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12320:
+^I^I}$

ERROR: code indent should never use tabs
#12359: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12321:
+^I      break;$

ERROR: code indent should never use tabs
#12360: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12322:
+^I    case 8:$

ERROR: code indent should never use tabs
#12361: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12323:
+^I      return 41; /* add */$

ERROR: code indent should never use tabs
#12362: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12324:
+^I    case 9:$

ERROR: code indent should never use tabs
#12363: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12325:
+^I      return 43; /* addx2 */$

ERROR: code indent should never use tabs
#12364: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12326:
+^I    case 10:$

ERROR: code indent should never use tabs
#12365: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12327:
+^I      return 44; /* addx4 */$

ERROR: code indent should never use tabs
#12366: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12328:
+^I    case 11:$

ERROR: code indent should never use tabs
#12367: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12329:
+^I      return 45; /* addx8 */$

ERROR: code indent should never use tabs
#12368: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12330:
+^I    case 12:$

ERROR: code indent should never use tabs
#12369: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12331:
+^I      return 42; /* sub */$

ERROR: code indent should never use tabs
#12370: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12332:
+^I    case 13:$

ERROR: code indent should never use tabs
#12371: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12333:
+^I      return 46; /* subx2 */$

ERROR: code indent should never use tabs
#12372: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12334:
+^I    case 14:$

ERROR: code indent should never use tabs
#12373: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12335:
+^I      return 47; /* subx4 */$

ERROR: code indent should never use tabs
#12374: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12336:
+^I    case 15:$

ERROR: code indent should never use tabs
#12375: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12337:
+^I      return 48; /* subx8 */$

ERROR: code indent should never use tabs
#12376: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12338:
+^I    }$

ERROR: code indent should never use tabs
#12377: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12339:
+^I  break;$

ERROR: code indent should never use tabs
#12378: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12340:
+^Icase 1:$

ERROR: code indent should never use tabs
#12379: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12341:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12379: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12341:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#12380: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12342:
+^I    {$

ERROR: code indent should never use tabs
#12381: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12343:
+^I    case 0:$

ERROR: code indent should never use tabs
#12382: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12344:
+^I    case 1:$

ERROR: code indent should never use tabs
#12383: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12345:
+^I      return 111; /* slli */$

ERROR: code indent should never use tabs
#12384: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12346:
+^I    case 2:$

ERROR: code indent should never use tabs
#12385: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12347:
+^I    case 3:$

ERROR: code indent should never use tabs
#12386: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12348:
+^I      return 112; /* srai */$

ERROR: code indent should never use tabs
#12387: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12349:
+^I    case 4:$

ERROR: code indent should never use tabs
#12388: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12350:
+^I      return 113; /* srli */$

ERROR: code indent should never use tabs
#12389: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12351:
+^I    case 6:$

ERROR: code indent should never use tabs
#12390: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12352:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12390: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12352:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12391: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12353:
+^I^I{$

ERROR: code indent should never use tabs
#12392: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12354:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12393: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12355:
+^I^I  return 129; /* xsr.lbeg */$

ERROR: code indent should never use tabs
#12394: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12356:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12395: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12357:
+^I^I  return 123; /* xsr.lend */$

ERROR: code indent should never use tabs
#12396: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12358:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12397: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12359:
+^I^I  return 126; /* xsr.lcount */$

ERROR: code indent should never use tabs
#12398: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12360:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12399: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12361:
+^I^I  return 132; /* xsr.sar */$

ERROR: code indent should never use tabs
#12400: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12362:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#12401: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12363:
+^I^I  return 135; /* xsr.litbase */$

ERROR: code indent should never use tabs
#12402: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12364:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#12403: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12365:
+^I^I  return 434; /* xsr.scompare1 */$

ERROR: code indent should never use tabs
#12404: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12366:
+^I^Icase 16:$

ERROR: code indent should never use tabs
#12405: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12367:
+^I^I  return 306; /* xsr.acclo */$

ERROR: code indent should never use tabs
#12406: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12368:
+^I^Icase 17:$

ERROR: code indent should never use tabs
#12407: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12369:
+^I^I  return 309; /* xsr.acchi */$

ERROR: code indent should never use tabs
#12408: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12370:
+^I^Icase 32:$

ERROR: code indent should never use tabs
#12409: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12371:
+^I^I  return 294; /* xsr.m0 */$

ERROR: code indent should never use tabs
#12410: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12372:
+^I^Icase 33:$

ERROR: code indent should never use tabs
#12411: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12373:
+^I^I  return 297; /* xsr.m1 */$

ERROR: code indent should never use tabs
#12412: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12374:
+^I^Icase 34:$

ERROR: code indent should never use tabs
#12413: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12375:
+^I^I  return 300; /* xsr.m2 */$

ERROR: code indent should never use tabs
#12414: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12376:
+^I^Icase 35:$

ERROR: code indent should never use tabs
#12415: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12377:
+^I^I  return 303; /* xsr.m3 */$

ERROR: code indent should never use tabs
#12416: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12378:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#12417: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12379:
+^I^I  return 22; /* xsr.windowbase */$

ERROR: code indent should never use tabs
#12418: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12380:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#12419: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12381:
+^I^I  return 25; /* xsr.windowstart */$

ERROR: code indent should never use tabs
#12420: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12382:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#12421: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12383:
+^I^I  return 395; /* xsr.ptevaddr */$

ERROR: code indent should never use tabs
#12422: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12384:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#12423: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12385:
+^I^I  return 398; /* xsr.rasid */$

ERROR: code indent should never use tabs
#12424: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12386:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#12425: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12387:
+^I^I  return 401; /* xsr.itlbcfg */$

ERROR: code indent should never use tabs
#12426: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12388:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#12427: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12389:
+^I^I  return 404; /* xsr.dtlbcfg */$

ERROR: code indent should never use tabs
#12428: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12390:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#12429: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12391:
+^I^I  return 340; /* xsr.ibreakenable */$

ERROR: code indent should never use tabs
#12430: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12392:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#12431: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12393:
+^I^I  return 352; /* xsr.ddr */$

ERROR: code indent should never use tabs
#12432: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12394:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#12433: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12395:
+^I^I  return 334; /* xsr.ibreaka0 */$

ERROR: code indent should never use tabs
#12434: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12396:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#12435: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12397:
+^I^I  return 337; /* xsr.ibreaka1 */$

ERROR: code indent should never use tabs
#12436: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12398:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#12437: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12399:
+^I^I  return 322; /* xsr.dbreaka0 */$

ERROR: code indent should never use tabs
#12438: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12400:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#12439: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12401:
+^I^I  return 328; /* xsr.dbreaka1 */$

ERROR: code indent should never use tabs
#12440: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12402:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#12441: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12403:
+^I^I  return 325; /* xsr.dbreakc0 */$

ERROR: code indent should never use tabs
#12442: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12404:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#12443: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12405:
+^I^I  return 331; /* xsr.dbreakc1 */$

ERROR: code indent should never use tabs
#12444: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12406:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#12445: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12407:
+^I^I  return 143; /* xsr.epc1 */$

ERROR: code indent should never use tabs
#12446: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12408:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#12447: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12409:
+^I^I  return 149; /* xsr.epc2 */$

ERROR: code indent should never use tabs
#12448: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12410:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#12449: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12411:
+^I^I  return 155; /* xsr.epc3 */$

ERROR: code indent should never use tabs
#12450: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12412:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#12451: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12413:
+^I^I  return 161; /* xsr.epc4 */$

ERROR: code indent should never use tabs
#12452: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12414:
+^I^Icase 181:$

ERROR: code indent should never use tabs
#12453: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12415:
+^I^I  return 167; /* xsr.epc5 */$

ERROR: code indent should never use tabs
#12454: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12416:
+^I^Icase 182:$

ERROR: code indent should never use tabs
#12455: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12417:
+^I^I  return 173; /* xsr.epc6 */$

ERROR: code indent should never use tabs
#12456: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12418:
+^I^Icase 183:$

ERROR: code indent should never use tabs
#12457: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12419:
+^I^I  return 179; /* xsr.epc7 */$

ERROR: code indent should never use tabs
#12458: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12420:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#12459: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12421:
+^I^I  return 206; /* xsr.depc */$

ERROR: code indent should never use tabs
#12460: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12422:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#12461: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12423:
+^I^I  return 185; /* xsr.eps2 */$

ERROR: code indent should never use tabs
#12462: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12424:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#12463: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12425:
+^I^I  return 188; /* xsr.eps3 */$

ERROR: code indent should never use tabs
#12464: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12426:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#12465: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12427:
+^I^I  return 191; /* xsr.eps4 */$

ERROR: code indent should never use tabs
#12466: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12428:
+^I^Icase 197:$

ERROR: code indent should never use tabs
#12467: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12429:
+^I^I  return 194; /* xsr.eps5 */$

ERROR: code indent should never use tabs
#12468: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12430:
+^I^Icase 198:$

ERROR: code indent should never use tabs
#12469: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12431:
+^I^I  return 197; /* xsr.eps6 */$

ERROR: code indent should never use tabs
#12470: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12432:
+^I^Icase 199:$

ERROR: code indent should never use tabs
#12471: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12433:
+^I^I  return 200; /* xsr.eps7 */$

ERROR: code indent should never use tabs
#12472: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12434:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#12473: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12435:
+^I^I  return 146; /* xsr.excsave1 */$

ERROR: code indent should never use tabs
#12474: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12436:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#12475: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12437:
+^I^I  return 152; /* xsr.excsave2 */$

ERROR: code indent should never use tabs
#12476: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12438:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#12477: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12439:
+^I^I  return 158; /* xsr.excsave3 */$

ERROR: code indent should never use tabs
#12478: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12440:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#12479: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12441:
+^I^I  return 164; /* xsr.excsave4 */$

ERROR: code indent should never use tabs
#12480: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12442:
+^I^Icase 213:$

ERROR: code indent should never use tabs
#12481: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12443:
+^I^I  return 170; /* xsr.excsave5 */$

ERROR: code indent should never use tabs
#12482: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12444:
+^I^Icase 214:$

ERROR: code indent should never use tabs
#12483: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12445:
+^I^I  return 176; /* xsr.excsave6 */$

ERROR: code indent should never use tabs
#12484: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12446:
+^I^Icase 215:$

ERROR: code indent should never use tabs
#12485: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12447:
+^I^I  return 182; /* xsr.excsave7 */$

ERROR: code indent should never use tabs
#12486: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12448:
+^I^Icase 224:$

ERROR: code indent should never use tabs
#12487: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12449:
+^I^I  return 420; /* xsr.cpenable */$

ERROR: code indent should never use tabs
#12488: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12450:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#12489: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12451:
+^I^I  return 317; /* xsr.intenable */$

ERROR: code indent should never use tabs
#12490: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12452:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#12491: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12453:
+^I^I  return 140; /* xsr.ps */$

ERROR: code indent should never use tabs
#12492: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12454:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#12493: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12455:
+^I^I  return 219; /* xsr.vecbase */$

ERROR: code indent should never use tabs
#12494: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12456:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#12495: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12457:
+^I^I  return 209; /* xsr.exccause */$

ERROR: code indent should never use tabs
#12496: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12458:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#12497: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12459:
+^I^I  return 343; /* xsr.debugcause */$

ERROR: code indent should never use tabs
#12498: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12460:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#12499: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12461:
+^I^I  return 358; /* xsr.ccount */$

ERROR: code indent should never use tabs
#12500: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12462:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#12501: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12463:
+^I^I  return 346; /* xsr.icount */$

ERROR: code indent should never use tabs
#12502: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12464:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#12503: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12465:
+^I^I  return 349; /* xsr.icountlevel */$

ERROR: code indent should never use tabs
#12504: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12466:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#12505: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12467:
+^I^I  return 203; /* xsr.excvaddr */$

ERROR: code indent should never use tabs
#12506: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12468:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#12507: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12469:
+^I^I  return 361; /* xsr.ccompare0 */$

ERROR: code indent should never use tabs
#12508: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12470:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#12509: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12471:
+^I^I  return 364; /* xsr.ccompare1 */$

ERROR: code indent should never use tabs
#12510: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12472:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#12511: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12473:
+^I^I  return 367; /* xsr.ccompare2 */$

ERROR: code indent should never use tabs
#12512: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12474:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#12513: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12475:
+^I^I  return 212; /* xsr.misc0 */$

ERROR: code indent should never use tabs
#12514: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12476:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#12515: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12477:
+^I^I  return 215; /* xsr.misc1 */$

ERROR: code indent should never use tabs
#12516: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12478:
+^I^I}$

ERROR: code indent should never use tabs
#12517: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12479:
+^I      break;$

ERROR: code indent should never use tabs
#12518: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12480:
+^I    case 8:$

ERROR: code indent should never use tabs
#12519: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12481:
+^I      return 108; /* src */$

ERROR: code indent should never use tabs
#12520: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12482:
+^I    case 9:$

ERROR: code indent should never use tabs
#12521: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12483:
+^I      if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12521: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12483:
+	      if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12522: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12484:
+^I^Ireturn 109; /* srl */$

ERROR: code indent should never use tabs
#12523: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12485:
+^I      break;$

ERROR: code indent should never use tabs
#12524: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12486:
+^I    case 10:$

ERROR: code indent should never use tabs
#12525: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12487:
+^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12525: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12487:
+	      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12526: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12488:
+^I^Ireturn 107; /* sll */$

ERROR: code indent should never use tabs
#12527: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12489:
+^I      break;$

ERROR: code indent should never use tabs
#12528: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12490:
+^I    case 11:$

ERROR: code indent should never use tabs
#12529: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12491:
+^I      if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12529: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12491:
+	      if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12530: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12492:
+^I^Ireturn 110; /* sra */$

ERROR: code indent should never use tabs
#12531: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12493:
+^I      break;$

ERROR: code indent should never use tabs
#12532: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12494:
+^I    case 12:$

ERROR: code indent should never use tabs
#12533: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12495:
+^I      return 290; /* mul16u */$

ERROR: code indent should never use tabs
#12534: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12496:
+^I    case 13:$

ERROR: code indent should never use tabs
#12535: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12497:
+^I      return 291; /* mul16s */$

ERROR: code indent should never use tabs
#12536: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12498:
+^I    case 15:$

ERROR: code indent should never use tabs
#12537: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12499:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12537: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12499:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12538: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12500:
+^I^I{$

ERROR: code indent should never use tabs
#12539: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12501:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12540: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12502:
+^I^I  return 374; /* lict */$

ERROR: code indent should never use tabs
#12541: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12503:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12542: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12504:
+^I^I  return 376; /* sict */$

ERROR: code indent should never use tabs
#12543: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12505:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12544: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12506:
+^I^I  return 375; /* licw */$

ERROR: code indent should never use tabs
#12545: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12507:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12546: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12508:
+^I^I  return 377; /* sicw */$

ERROR: code indent should never use tabs
#12547: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12509:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#12548: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12510:
+^I^I  return 392; /* ldct */$

ERROR: code indent should never use tabs
#12549: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12511:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#12550: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12512:
+^I^I  return 391; /* sdct */$

ERROR: code indent should never use tabs
#12551: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12513:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#12552: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12514:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#12552: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12514:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#12553: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12515:
+^I^I    return 353; /* rfdo */$

ERROR: code indent should never use tabs
#12554: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12516:
+^I^I  if (Field_t_Slot_inst_get (insn) == 1)$

ERROR: braces {} are necessary for all arms of this statement
#12554: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12516:
+		  if (Field_t_Slot_inst_get (insn) == 1)
[...]

ERROR: code indent should never use tabs
#12555: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12517:
+^I^I    return 354; /* rfdd */$

ERROR: code indent should never use tabs
#12556: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12518:
+^I^I  break;$

ERROR: code indent should never use tabs
#12557: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12519:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#12558: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12520:
+^I^I  return 415; /* ldpte */$

ERROR: code indent should never use tabs
#12559: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12521:
+^I^I}$

ERROR: code indent should never use tabs
#12560: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12522:
+^I      break;$

ERROR: code indent should never use tabs
#12561: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12523:
+^I    }$

ERROR: code indent should never use tabs
#12562: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12524:
+^I  break;$

ERROR: code indent should never use tabs
#12563: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12525:
+^Icase 2:$

ERROR: code indent should never use tabs
#12564: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12526:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12564: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12526:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#12565: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12527:
+^I    {$

ERROR: code indent should never use tabs
#12566: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12528:
+^I    case 8:$

ERROR: code indent should never use tabs
#12567: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12529:
+^I      return 439; /* mull */$

ERROR: code indent should never use tabs
#12568: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12530:
+^I    case 12:$

ERROR: code indent should never use tabs
#12569: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12531:
+^I      return 435; /* quou */$

ERROR: code indent should never use tabs
#12570: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12532:
+^I    case 13:$

ERROR: code indent should never use tabs
#12571: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12533:
+^I      return 436; /* quos */$

ERROR: code indent should never use tabs
#12572: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12534:
+^I    case 14:$

ERROR: code indent should never use tabs
#12573: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12535:
+^I      return 437; /* remu */$

ERROR: code indent should never use tabs
#12574: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12536:
+^I    case 15:$

ERROR: code indent should never use tabs
#12575: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12537:
+^I      return 438; /* rems */$

ERROR: code indent should never use tabs
#12576: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12538:
+^I    }$

ERROR: code indent should never use tabs
#12577: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12539:
+^I  break;$

ERROR: code indent should never use tabs
#12578: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12540:
+^Icase 3:$

ERROR: code indent should never use tabs
#12579: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12541:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12579: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12541:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#12580: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12542:
+^I    {$

ERROR: code indent should never use tabs
#12581: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12543:
+^I    case 0:$

ERROR: code indent should never use tabs
#12582: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12544:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12582: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12544:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12583: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12545:
+^I^I{$

ERROR: code indent should never use tabs
#12584: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12546:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12585: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12547:
+^I^I  return 127; /* rsr.lbeg */$

ERROR: code indent should never use tabs
#12586: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12548:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12587: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12549:
+^I^I  return 121; /* rsr.lend */$

ERROR: code indent should never use tabs
#12588: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12550:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12589: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12551:
+^I^I  return 124; /* rsr.lcount */$

ERROR: code indent should never use tabs
#12590: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12552:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12591: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12553:
+^I^I  return 130; /* rsr.sar */$

ERROR: code indent should never use tabs
#12592: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12554:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#12593: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12555:
+^I^I  return 133; /* rsr.litbase */$

ERROR: code indent should never use tabs
#12594: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12556:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#12595: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12557:
+^I^I  return 432; /* rsr.scompare1 */$

ERROR: code indent should never use tabs
#12596: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12558:
+^I^Icase 16:$

ERROR: code indent should never use tabs
#12597: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12559:
+^I^I  return 304; /* rsr.acclo */$

ERROR: code indent should never use tabs
#12598: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12560:
+^I^Icase 17:$

ERROR: code indent should never use tabs
#12599: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12561:
+^I^I  return 307; /* rsr.acchi */$

ERROR: code indent should never use tabs
#12600: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12562:
+^I^Icase 32:$

ERROR: code indent should never use tabs
#12601: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12563:
+^I^I  return 292; /* rsr.m0 */$

ERROR: code indent should never use tabs
#12602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12564:
+^I^Icase 33:$

ERROR: code indent should never use tabs
#12603: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12565:
+^I^I  return 295; /* rsr.m1 */$

ERROR: code indent should never use tabs
#12604: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12566:
+^I^Icase 34:$

ERROR: code indent should never use tabs
#12605: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12567:
+^I^I  return 298; /* rsr.m2 */$

ERROR: code indent should never use tabs
#12606: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12568:
+^I^Icase 35:$

ERROR: code indent should never use tabs
#12607: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12569:
+^I^I  return 301; /* rsr.m3 */$

ERROR: code indent should never use tabs
#12608: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12570:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#12609: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12571:
+^I^I  return 20; /* rsr.windowbase */$

ERROR: code indent should never use tabs
#12610: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12572:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#12611: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12573:
+^I^I  return 23; /* rsr.windowstart */$

ERROR: code indent should never use tabs
#12612: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12574:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#12613: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12575:
+^I^I  return 394; /* rsr.ptevaddr */$

ERROR: code indent should never use tabs
#12614: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12576:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#12615: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12577:
+^I^I  return 396; /* rsr.rasid */$

ERROR: code indent should never use tabs
#12616: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12578:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#12617: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12579:
+^I^I  return 399; /* rsr.itlbcfg */$

ERROR: code indent should never use tabs
#12618: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12580:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#12619: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12581:
+^I^I  return 402; /* rsr.dtlbcfg */$

ERROR: code indent should never use tabs
#12620: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12582:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#12621: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12583:
+^I^I  return 338; /* rsr.ibreakenable */$

ERROR: code indent should never use tabs
#12622: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12584:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#12623: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12585:
+^I^I  return 350; /* rsr.ddr */$

ERROR: code indent should never use tabs
#12624: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12586:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#12625: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12587:
+^I^I  return 332; /* rsr.ibreaka0 */$

ERROR: code indent should never use tabs
#12626: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12588:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#12627: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12589:
+^I^I  return 335; /* rsr.ibreaka1 */$

ERROR: code indent should never use tabs
#12628: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12590:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#12629: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12591:
+^I^I  return 320; /* rsr.dbreaka0 */$

ERROR: code indent should never use tabs
#12630: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12592:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#12631: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12593:
+^I^I  return 326; /* rsr.dbreaka1 */$

ERROR: code indent should never use tabs
#12632: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12594:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#12633: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12595:
+^I^I  return 323; /* rsr.dbreakc0 */$

ERROR: code indent should never use tabs
#12634: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12596:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#12635: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12597:
+^I^I  return 329; /* rsr.dbreakc1 */$

ERROR: code indent should never use tabs
#12636: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12598:
+^I^Icase 176:$

ERROR: code indent should never use tabs
#12637: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12599:
+^I^I  return 136; /* rsr.176 */$

ERROR: code indent should never use tabs
#12638: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12600:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#12639: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12601:
+^I^I  return 141; /* rsr.epc1 */$

ERROR: code indent should never use tabs
#12640: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12602:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#12641: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12603:
+^I^I  return 147; /* rsr.epc2 */$

ERROR: code indent should never use tabs
#12642: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12604:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#12643: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12605:
+^I^I  return 153; /* rsr.epc3 */$

ERROR: code indent should never use tabs
#12644: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12606:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#12645: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12607:
+^I^I  return 159; /* rsr.epc4 */$

ERROR: code indent should never use tabs
#12646: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12608:
+^I^Icase 181:$

ERROR: code indent should never use tabs
#12647: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12609:
+^I^I  return 165; /* rsr.epc5 */$

ERROR: code indent should never use tabs
#12648: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12610:
+^I^Icase 182:$

ERROR: code indent should never use tabs
#12649: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12611:
+^I^I  return 171; /* rsr.epc6 */$

ERROR: code indent should never use tabs
#12650: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12612:
+^I^Icase 183:$

ERROR: code indent should never use tabs
#12651: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12613:
+^I^I  return 177; /* rsr.epc7 */$

ERROR: code indent should never use tabs
#12652: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12614:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#12653: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12615:
+^I^I  return 204; /* rsr.depc */$

ERROR: code indent should never use tabs
#12654: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12616:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#12655: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12617:
+^I^I  return 183; /* rsr.eps2 */$

ERROR: code indent should never use tabs
#12656: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12618:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#12657: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12619:
+^I^I  return 186; /* rsr.eps3 */$

ERROR: code indent should never use tabs
#12658: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12620:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#12659: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12621:
+^I^I  return 189; /* rsr.eps4 */$

ERROR: code indent should never use tabs
#12660: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12622:
+^I^Icase 197:$

ERROR: code indent should never use tabs
#12661: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12623:
+^I^I  return 192; /* rsr.eps5 */$

ERROR: code indent should never use tabs
#12662: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12624:
+^I^Icase 198:$

ERROR: code indent should never use tabs
#12663: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12625:
+^I^I  return 195; /* rsr.eps6 */$

ERROR: code indent should never use tabs
#12664: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12626:
+^I^Icase 199:$

ERROR: code indent should never use tabs
#12665: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12627:
+^I^I  return 198; /* rsr.eps7 */$

ERROR: code indent should never use tabs
#12666: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12628:
+^I^Icase 208:$

ERROR: code indent should never use tabs
#12667: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12629:
+^I^I  return 137; /* rsr.208 */$

ERROR: code indent should never use tabs
#12668: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12630:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#12669: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12631:
+^I^I  return 144; /* rsr.excsave1 */$

ERROR: code indent should never use tabs
#12670: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12632:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#12671: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12633:
+^I^I  return 150; /* rsr.excsave2 */$

ERROR: code indent should never use tabs
#12672: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12634:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#12673: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12635:
+^I^I  return 156; /* rsr.excsave3 */$

ERROR: code indent should never use tabs
#12674: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12636:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#12675: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12637:
+^I^I  return 162; /* rsr.excsave4 */$

ERROR: code indent should never use tabs
#12676: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12638:
+^I^Icase 213:$

ERROR: code indent should never use tabs
#12677: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12639:
+^I^I  return 168; /* rsr.excsave5 */$

ERROR: code indent should never use tabs
#12678: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12640:
+^I^Icase 214:$

ERROR: code indent should never use tabs
#12679: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12641:
+^I^I  return 174; /* rsr.excsave6 */$

ERROR: code indent should never use tabs
#12680: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12642:
+^I^Icase 215:$

ERROR: code indent should never use tabs
#12681: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12643:
+^I^I  return 180; /* rsr.excsave7 */$

ERROR: code indent should never use tabs
#12682: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12644:
+^I^Icase 224:$

ERROR: code indent should never use tabs
#12683: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12645:
+^I^I  return 418; /* rsr.cpenable */$

ERROR: code indent should never use tabs
#12684: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12646:
+^I^Icase 226:$

ERROR: code indent should never use tabs
#12685: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12647:
+^I^I  return 312; /* rsr.interrupt */$

ERROR: code indent should never use tabs
#12686: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12648:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#12687: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12649:
+^I^I  return 315; /* rsr.intenable */$

ERROR: code indent should never use tabs
#12688: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12650:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#12689: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12651:
+^I^I  return 138; /* rsr.ps */$

ERROR: code indent should never use tabs
#12690: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12652:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#12691: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12653:
+^I^I  return 217; /* rsr.vecbase */$

ERROR: code indent should never use tabs
#12692: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12654:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#12693: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12655:
+^I^I  return 207; /* rsr.exccause */$

ERROR: code indent should never use tabs
#12694: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12656:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#12695: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12657:
+^I^I  return 341; /* rsr.debugcause */$

ERROR: code indent should never use tabs
#12696: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12658:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#12697: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12659:
+^I^I  return 356; /* rsr.ccount */$

ERROR: code indent should never use tabs
#12698: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12660:
+^I^Icase 235:$

ERROR: code indent should never use tabs
#12699: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12661:
+^I^I  return 216; /* rsr.prid */$

ERROR: code indent should never use tabs
#12700: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12662:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#12701: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12663:
+^I^I  return 344; /* rsr.icount */$

ERROR: code indent should never use tabs
#12702: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12664:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#12703: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12665:
+^I^I  return 347; /* rsr.icountlevel */$

ERROR: code indent should never use tabs
#12704: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12666:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#12705: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12667:
+^I^I  return 201; /* rsr.excvaddr */$

ERROR: code indent should never use tabs
#12706: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12668:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#12707: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12669:
+^I^I  return 359; /* rsr.ccompare0 */$

ERROR: code indent should never use tabs
#12708: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12670:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#12709: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12671:
+^I^I  return 362; /* rsr.ccompare1 */$

ERROR: code indent should never use tabs
#12710: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12672:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#12711: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12673:
+^I^I  return 365; /* rsr.ccompare2 */$

ERROR: code indent should never use tabs
#12712: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12674:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#12713: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12675:
+^I^I  return 210; /* rsr.misc0 */$

ERROR: code indent should never use tabs
#12714: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12676:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#12715: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12677:
+^I^I  return 213; /* rsr.misc1 */$

ERROR: code indent should never use tabs
#12716: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12678:
+^I^I}$

ERROR: code indent should never use tabs
#12717: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12679:
+^I      break;$

ERROR: code indent should never use tabs
#12718: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12680:
+^I    case 1:$

ERROR: code indent should never use tabs
#12719: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12681:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12719: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12681:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12720: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12682:
+^I^I{$

ERROR: code indent should never use tabs
#12721: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12683:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12722: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12684:
+^I^I  return 128; /* wsr.lbeg */$

ERROR: code indent should never use tabs
#12723: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12685:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#12724: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12686:
+^I^I  return 122; /* wsr.lend */$

ERROR: code indent should never use tabs
#12725: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12687:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12726: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12688:
+^I^I  return 125; /* wsr.lcount */$

ERROR: code indent should never use tabs
#12727: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12689:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12728: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12690:
+^I^I  return 131; /* wsr.sar */$

ERROR: code indent should never use tabs
#12729: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12691:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#12730: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12692:
+^I^I  return 134; /* wsr.litbase */$

ERROR: code indent should never use tabs
#12731: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12693:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#12732: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12694:
+^I^I  return 433; /* wsr.scompare1 */$

ERROR: code indent should never use tabs
#12733: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12695:
+^I^Icase 16:$

ERROR: code indent should never use tabs
#12734: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12696:
+^I^I  return 305; /* wsr.acclo */$

ERROR: code indent should never use tabs
#12735: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12697:
+^I^Icase 17:$

ERROR: code indent should never use tabs
#12736: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12698:
+^I^I  return 308; /* wsr.acchi */$

ERROR: code indent should never use tabs
#12737: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12699:
+^I^Icase 32:$

ERROR: code indent should never use tabs
#12738: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12700:
+^I^I  return 293; /* wsr.m0 */$

ERROR: code indent should never use tabs
#12739: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12701:
+^I^Icase 33:$

ERROR: code indent should never use tabs
#12740: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12702:
+^I^I  return 296; /* wsr.m1 */$

ERROR: code indent should never use tabs
#12741: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12703:
+^I^Icase 34:$

ERROR: code indent should never use tabs
#12742: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12704:
+^I^I  return 299; /* wsr.m2 */$

ERROR: code indent should never use tabs
#12743: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12705:
+^I^Icase 35:$

ERROR: code indent should never use tabs
#12744: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12706:
+^I^I  return 302; /* wsr.m3 */$

ERROR: code indent should never use tabs
#12745: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12707:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#12746: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12708:
+^I^I  return 21; /* wsr.windowbase */$

ERROR: code indent should never use tabs
#12747: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12709:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#12748: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12710:
+^I^I  return 24; /* wsr.windowstart */$

ERROR: code indent should never use tabs
#12749: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12711:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#12750: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12712:
+^I^I  return 393; /* wsr.ptevaddr */$

ERROR: code indent should never use tabs
#12751: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12713:
+^I^Icase 89:$

ERROR: code indent should never use tabs
#12752: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12714:
+^I^I  return 355; /* wsr.mmid */$

ERROR: code indent should never use tabs
#12753: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12715:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#12754: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12716:
+^I^I  return 397; /* wsr.rasid */$

ERROR: code indent should never use tabs
#12755: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12717:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#12756: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12718:
+^I^I  return 400; /* wsr.itlbcfg */$

ERROR: code indent should never use tabs
#12757: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12719:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#12758: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12720:
+^I^I  return 403; /* wsr.dtlbcfg */$

ERROR: code indent should never use tabs
#12759: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12721:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#12760: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12722:
+^I^I  return 339; /* wsr.ibreakenable */$

ERROR: code indent should never use tabs
#12761: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12723:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#12762: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12724:
+^I^I  return 351; /* wsr.ddr */$

ERROR: code indent should never use tabs
#12763: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12725:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#12764: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12726:
+^I^I  return 333; /* wsr.ibreaka0 */$

ERROR: code indent should never use tabs
#12765: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12727:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#12766: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12728:
+^I^I  return 336; /* wsr.ibreaka1 */$

ERROR: code indent should never use tabs
#12767: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12729:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#12768: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12730:
+^I^I  return 321; /* wsr.dbreaka0 */$

ERROR: code indent should never use tabs
#12769: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12731:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#12770: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12732:
+^I^I  return 327; /* wsr.dbreaka1 */$

ERROR: code indent should never use tabs
#12771: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12733:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#12772: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12734:
+^I^I  return 324; /* wsr.dbreakc0 */$

ERROR: code indent should never use tabs
#12773: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12735:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#12774: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12736:
+^I^I  return 330; /* wsr.dbreakc1 */$

ERROR: code indent should never use tabs
#12775: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12737:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#12776: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12738:
+^I^I  return 142; /* wsr.epc1 */$

ERROR: code indent should never use tabs
#12777: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12739:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#12778: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12740:
+^I^I  return 148; /* wsr.epc2 */$

ERROR: code indent should never use tabs
#12779: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12741:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#12780: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12742:
+^I^I  return 154; /* wsr.epc3 */$

ERROR: code indent should never use tabs
#12781: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12743:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#12782: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12744:
+^I^I  return 160; /* wsr.epc4 */$

ERROR: code indent should never use tabs
#12783: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12745:
+^I^Icase 181:$

ERROR: code indent should never use tabs
#12784: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12746:
+^I^I  return 166; /* wsr.epc5 */$

ERROR: code indent should never use tabs
#12785: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12747:
+^I^Icase 182:$

ERROR: code indent should never use tabs
#12786: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12748:
+^I^I  return 172; /* wsr.epc6 */$

ERROR: code indent should never use tabs
#12787: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12749:
+^I^Icase 183:$

ERROR: code indent should never use tabs
#12788: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12750:
+^I^I  return 178; /* wsr.epc7 */$

ERROR: code indent should never use tabs
#12789: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12751:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#12790: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12752:
+^I^I  return 205; /* wsr.depc */$

ERROR: code indent should never use tabs
#12791: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12753:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#12792: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12754:
+^I^I  return 184; /* wsr.eps2 */$

ERROR: code indent should never use tabs
#12793: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12755:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#12794: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12756:
+^I^I  return 187; /* wsr.eps3 */$

ERROR: code indent should never use tabs
#12795: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12757:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#12796: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12758:
+^I^I  return 190; /* wsr.eps4 */$

ERROR: code indent should never use tabs
#12797: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12759:
+^I^Icase 197:$

ERROR: code indent should never use tabs
#12798: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12760:
+^I^I  return 193; /* wsr.eps5 */$

ERROR: code indent should never use tabs
#12799: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12761:
+^I^Icase 198:$

ERROR: code indent should never use tabs
#12800: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12762:
+^I^I  return 196; /* wsr.eps6 */$

ERROR: code indent should never use tabs
#12801: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12763:
+^I^Icase 199:$

ERROR: code indent should never use tabs
#12802: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12764:
+^I^I  return 199; /* wsr.eps7 */$

ERROR: code indent should never use tabs
#12803: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12765:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#12804: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12766:
+^I^I  return 145; /* wsr.excsave1 */$

ERROR: code indent should never use tabs
#12805: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12767:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#12806: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12768:
+^I^I  return 151; /* wsr.excsave2 */$

ERROR: code indent should never use tabs
#12807: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12769:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#12808: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12770:
+^I^I  return 157; /* wsr.excsave3 */$

ERROR: code indent should never use tabs
#12809: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12771:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#12810: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12772:
+^I^I  return 163; /* wsr.excsave4 */$

ERROR: code indent should never use tabs
#12811: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12773:
+^I^Icase 213:$

ERROR: code indent should never use tabs
#12812: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12774:
+^I^I  return 169; /* wsr.excsave5 */$

ERROR: code indent should never use tabs
#12813: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12775:
+^I^Icase 214:$

ERROR: code indent should never use tabs
#12814: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12776:
+^I^I  return 175; /* wsr.excsave6 */$

ERROR: code indent should never use tabs
#12815: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12777:
+^I^Icase 215:$

ERROR: code indent should never use tabs
#12816: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12778:
+^I^I  return 181; /* wsr.excsave7 */$

ERROR: code indent should never use tabs
#12817: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12779:
+^I^Icase 224:$

ERROR: code indent should never use tabs
#12818: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12780:
+^I^I  return 419; /* wsr.cpenable */$

ERROR: code indent should never use tabs
#12819: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12781:
+^I^Icase 226:$

ERROR: code indent should never use tabs
#12820: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12782:
+^I^I  return 313; /* wsr.intset */$

ERROR: code indent should never use tabs
#12821: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12783:
+^I^Icase 227:$

ERROR: code indent should never use tabs
#12822: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12784:
+^I^I  return 314; /* wsr.intclear */$

ERROR: code indent should never use tabs
#12823: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12785:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#12824: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12786:
+^I^I  return 316; /* wsr.intenable */$

ERROR: code indent should never use tabs
#12825: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12787:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#12826: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12788:
+^I^I  return 139; /* wsr.ps */$

ERROR: code indent should never use tabs
#12827: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12789:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#12828: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12790:
+^I^I  return 218; /* wsr.vecbase */$

ERROR: code indent should never use tabs
#12829: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12791:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#12830: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12792:
+^I^I  return 208; /* wsr.exccause */$

ERROR: code indent should never use tabs
#12831: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12793:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#12832: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12794:
+^I^I  return 342; /* wsr.debugcause */$

ERROR: code indent should never use tabs
#12833: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12795:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#12834: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12796:
+^I^I  return 357; /* wsr.ccount */$

ERROR: code indent should never use tabs
#12835: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12797:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#12836: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12798:
+^I^I  return 345; /* wsr.icount */$

ERROR: code indent should never use tabs
#12837: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12799:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#12838: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12800:
+^I^I  return 348; /* wsr.icountlevel */$

ERROR: code indent should never use tabs
#12839: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12801:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#12840: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12802:
+^I^I  return 202; /* wsr.excvaddr */$

ERROR: code indent should never use tabs
#12841: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12803:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#12842: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12804:
+^I^I  return 360; /* wsr.ccompare0 */$

ERROR: code indent should never use tabs
#12843: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12805:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#12844: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12806:
+^I^I  return 363; /* wsr.ccompare1 */$

ERROR: code indent should never use tabs
#12845: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12807:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#12846: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12808:
+^I^I  return 366; /* wsr.ccompare2 */$

ERROR: code indent should never use tabs
#12847: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12809:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#12848: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12810:
+^I^I  return 211; /* wsr.misc0 */$

ERROR: code indent should never use tabs
#12849: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12811:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#12850: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12812:
+^I^I  return 214; /* wsr.misc1 */$

ERROR: code indent should never use tabs
#12851: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12813:
+^I^I}$

ERROR: code indent should never use tabs
#12852: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12814:
+^I      break;$

ERROR: code indent should never use tabs
#12853: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12815:
+^I    case 2:$

ERROR: code indent should never use tabs
#12854: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12816:
+^I      return 428; /* sext */$

ERROR: code indent should never use tabs
#12855: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12817:
+^I    case 3:$

ERROR: code indent should never use tabs
#12856: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12818:
+^I      return 421; /* clamps */$

ERROR: code indent should never use tabs
#12857: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12819:
+^I    case 4:$

ERROR: code indent should never use tabs
#12858: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12820:
+^I      return 422; /* min */$

ERROR: code indent should never use tabs
#12859: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12821:
+^I    case 5:$

ERROR: code indent should never use tabs
#12860: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12822:
+^I      return 423; /* max */$

ERROR: code indent should never use tabs
#12861: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12823:
+^I    case 6:$

ERROR: code indent should never use tabs
#12862: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12824:
+^I      return 424; /* minu */$

ERROR: code indent should never use tabs
#12863: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12825:
+^I    case 7:$

ERROR: code indent should never use tabs
#12864: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12826:
+^I      return 425; /* maxu */$

ERROR: code indent should never use tabs
#12865: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12827:
+^I    case 8:$

ERROR: code indent should never use tabs
#12866: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12828:
+^I      return 91; /* moveqz */$

ERROR: code indent should never use tabs
#12867: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12829:
+^I    case 9:$

ERROR: code indent should never use tabs
#12868: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12830:
+^I      return 92; /* movnez */$

ERROR: code indent should never use tabs
#12869: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12831:
+^I    case 10:$

ERROR: code indent should never use tabs
#12870: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12832:
+^I      return 93; /* movltz */$

ERROR: code indent should never use tabs
#12871: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12833:
+^I    case 11:$

ERROR: code indent should never use tabs
#12872: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12834:
+^I      return 94; /* movgez */$

ERROR: code indent should never use tabs
#12873: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12835:
+^I    case 14:$

ERROR: code indent should never use tabs
#12874: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12836:
+^I      switch (Field_st_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12874: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12836:
+	      switch (Field_st_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12875: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12837:
+^I^I{$

ERROR: code indent should never use tabs
#12876: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12838:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#12877: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12839:
+^I^I  return 440; /* rur.expstate */$

ERROR: code indent should never use tabs
#12878: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12840:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#12879: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12841:
+^I^I  return 37; /* rur.threadptr */$

ERROR: code indent should never use tabs
#12880: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12842:
+^I^I}$

ERROR: code indent should never use tabs
#12881: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12843:
+^I      break;$

ERROR: code indent should never use tabs
#12882: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12844:
+^I    case 15:$

ERROR: code indent should never use tabs
#12883: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12845:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12883: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12845:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12884: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12846:
+^I^I{$

ERROR: code indent should never use tabs
#12885: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12847:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#12886: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12848:
+^I^I  return 441; /* wur.expstate */$

ERROR: code indent should never use tabs
#12887: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12849:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#12888: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12850:
+^I^I  return 38; /* wur.threadptr */$

ERROR: code indent should never use tabs
#12889: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12851:
+^I^I}$

ERROR: code indent should never use tabs
#12890: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12852:
+^I      break;$

ERROR: code indent should never use tabs
#12891: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12853:
+^I    }$

ERROR: code indent should never use tabs
#12892: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12854:
+^I  break;$

ERROR: code indent should never use tabs
#12893: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12855:
+^Icase 4:$

ERROR: code indent should never use tabs
#12894: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12856:
+^Icase 5:$

ERROR: code indent should never use tabs
#12895: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12857:
+^I  return 78; /* extui */$

ERROR: code indent should never use tabs
#12896: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12858:
+^Icase 9:$

ERROR: code indent should never use tabs
#12897: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12859:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12897: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12859:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#12898: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12860:
+^I    {$

ERROR: code indent should never use tabs
#12899: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12861:
+^I    case 0:$

ERROR: code indent should never use tabs
#12900: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12862:
+^I      return 18; /* l32e */$

ERROR: code indent should never use tabs
#12901: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12863:
+^I    case 4:$

ERROR: code indent should never use tabs
#12902: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12864:
+^I      return 19; /* s32e */$

ERROR: code indent should never use tabs
#12903: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12865:
+^I    }$

ERROR: code indent should never use tabs
#12904: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12866:
+^I  break;$

ERROR: code indent should never use tabs
#12905: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12867:
+^I}$

ERROR: that open brace { should be on the previous line
#12906: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12868:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#12907: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12869:
+^I{$

ERROR: code indent should never use tabs
#12908: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12870:
+^Icase 0:$

ERROR: code indent should never use tabs
#12909: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12871:
+^I  if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#12909: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12871:
+	  if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#12910: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12872:
+^I      Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#12911: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12873:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#12912: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12874:
+^I    return 442; /* read_impwire */$

ERROR: code indent should never use tabs
#12913: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12875:
+^I  break;$

ERROR: code indent should never use tabs
#12914: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12876:
+^Icase 1:$

ERROR: code indent should never use tabs
#12915: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12877:
+^I  if (Field_s3to1_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#12915: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12877:
+	  if (Field_s3to1_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#12916: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12878:
+^I      Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#12917: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12879:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#12918: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12880:
+^I    return 443; /* setb_expstate */$

ERROR: code indent should never use tabs
#12919: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12881:
+^I  if (Field_s3to1_Slot_inst_get (insn) == 1 &&$

ERROR: braces {} are necessary for all arms of this statement
#12919: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12881:
+	  if (Field_s3to1_Slot_inst_get (insn) == 1 &&
[...]

ERROR: code indent should never use tabs
#12920: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12882:
+^I      Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#12921: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12883:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#12922: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12884:
+^I    return 444; /* clrb_expstate */$

ERROR: code indent should never use tabs
#12923: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12885:
+^I  break;$

ERROR: code indent should never use tabs
#12924: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12886:
+^Icase 2:$

ERROR: code indent should never use tabs
#12925: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12887:
+^I  if (Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#12925: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12887:
+	  if (Field_op2_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#12926: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12888:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#12927: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12889:
+^I    return 445; /* wrmsk_expstate */$

ERROR: code indent should never use tabs
#12928: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12890:
+^I  break;$

ERROR: code indent should never use tabs
#12929: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12891:
+^I}$

ERROR: that open brace { should be on the previous line
#12934: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12896:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#12935: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12897:
+^I{$

ERROR: code indent should never use tabs
#12936: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12898:
+^Icase 0:$

ERROR: code indent should never use tabs
#12937: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12899:
+^I  return 86; /* l8ui */$

ERROR: code indent should never use tabs
#12938: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12900:
+^Icase 1:$

ERROR: code indent should never use tabs
#12939: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12901:
+^I  return 82; /* l16ui */$

ERROR: code indent should never use tabs
#12940: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12902:
+^Icase 2:$

ERROR: code indent should never use tabs
#12941: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12903:
+^I  return 84; /* l32i */$

ERROR: code indent should never use tabs
#12942: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12904:
+^Icase 4:$

ERROR: code indent should never use tabs
#12943: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12905:
+^I  return 101; /* s8i */$

ERROR: code indent should never use tabs
#12944: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12906:
+^Icase 5:$

ERROR: code indent should never use tabs
#12945: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12907:
+^I  return 99; /* s16i */$

ERROR: code indent should never use tabs
#12946: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12908:
+^Icase 6:$

ERROR: code indent should never use tabs
#12947: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12909:
+^I  return 100; /* s32i */$

ERROR: code indent should never use tabs
#12948: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12910:
+^Icase 7:$

ERROR: code indent should never use tabs
#12949: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12911:
+^I  switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12949: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12911:
+	  switch (Field_t_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#12950: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12912:
+^I    {$

ERROR: code indent should never use tabs
#12951: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12913:
+^I    case 0:$

ERROR: code indent should never use tabs
#12952: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12914:
+^I      return 384; /* dpfr */$

ERROR: code indent should never use tabs
#12953: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12915:
+^I    case 1:$

ERROR: code indent should never use tabs
#12954: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12916:
+^I      return 385; /* dpfw */$

ERROR: code indent should never use tabs
#12955: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12917:
+^I    case 2:$

ERROR: code indent should never use tabs
#12956: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12918:
+^I      return 386; /* dpfro */$

ERROR: code indent should never use tabs
#12957: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12919:
+^I    case 3:$

ERROR: code indent should never use tabs
#12958: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12920:
+^I      return 387; /* dpfwo */$

ERROR: code indent should never use tabs
#12959: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12921:
+^I    case 4:$

ERROR: code indent should never use tabs
#12960: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12922:
+^I      return 378; /* dhwb */$

ERROR: code indent should never use tabs
#12961: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12923:
+^I    case 5:$

ERROR: code indent should never use tabs
#12962: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12924:
+^I      return 379; /* dhwbi */$

ERROR: code indent should never use tabs
#12963: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12925:
+^I    case 6:$

ERROR: code indent should never use tabs
#12964: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12926:
+^I      return 382; /* dhi */$

ERROR: code indent should never use tabs
#12965: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12927:
+^I    case 7:$

ERROR: code indent should never use tabs
#12966: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12928:
+^I      return 383; /* dii */$

ERROR: code indent should never use tabs
#12967: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12929:
+^I    case 8:$

ERROR: code indent should never use tabs
#12968: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12930:
+^I      switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12968: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12930:
+	      switch (Field_op1_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12969: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12931:
+^I^I{$

ERROR: code indent should never use tabs
#12970: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12932:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12971: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12933:
+^I^I  return 388; /* dpfl */$

ERROR: code indent should never use tabs
#12972: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12934:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12973: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12935:
+^I^I  return 389; /* dhu */$

ERROR: code indent should never use tabs
#12974: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12936:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12975: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12937:
+^I^I  return 390; /* diu */$

ERROR: code indent should never use tabs
#12976: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12938:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#12977: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12939:
+^I^I  return 380; /* diwb */$

ERROR: code indent should never use tabs
#12978: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12940:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#12979: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12941:
+^I^I  return 381; /* diwbi */$

ERROR: code indent should never use tabs
#12980: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12942:
+^I^I}$

ERROR: code indent should never use tabs
#12981: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12943:
+^I      break;$

ERROR: code indent should never use tabs
#12982: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12944:
+^I    case 12:$

ERROR: code indent should never use tabs
#12983: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12945:
+^I      return 368; /* ipf */$

ERROR: code indent should never use tabs
#12984: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12946:
+^I    case 13:$

ERROR: code indent should never use tabs
#12985: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12947:
+^I      switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#12985: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12947:
+	      switch (Field_op1_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#12986: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12948:
+^I^I{$

ERROR: code indent should never use tabs
#12987: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12949:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#12988: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12950:
+^I^I  return 370; /* ipfl */$

ERROR: code indent should never use tabs
#12989: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12951:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#12990: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12952:
+^I^I  return 371; /* ihu */$

ERROR: code indent should never use tabs
#12991: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12953:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#12992: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12954:
+^I^I  return 372; /* iiu */$

ERROR: code indent should never use tabs
#12993: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12955:
+^I^I}$

ERROR: code indent should never use tabs
#12994: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12956:
+^I      break;$

ERROR: code indent should never use tabs
#12995: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12957:
+^I    case 14:$

ERROR: code indent should never use tabs
#12996: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12958:
+^I      return 369; /* ihi */$

ERROR: code indent should never use tabs
#12997: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12959:
+^I    case 15:$

ERROR: code indent should never use tabs
#12998: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12960:
+^I      return 373; /* iii */$

ERROR: code indent should never use tabs
#12999: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12961:
+^I    }$

ERROR: code indent should never use tabs
#13000: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12962:
+^I  break;$

ERROR: code indent should never use tabs
#13001: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12963:
+^Icase 9:$

ERROR: code indent should never use tabs
#13002: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12964:
+^I  return 83; /* l16si */$

ERROR: code indent should never use tabs
#13003: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12965:
+^Icase 10:$

ERROR: code indent should never use tabs
#13004: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12966:
+^I  return 90; /* movi */$

ERROR: code indent should never use tabs
#13005: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12967:
+^Icase 11:$

ERROR: code indent should never use tabs
#13006: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12968:
+^I  return 429; /* l32ai */$

ERROR: code indent should never use tabs
#13007: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12969:
+^Icase 12:$

ERROR: code indent should never use tabs
#13008: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12970:
+^I  return 39; /* addi */$

ERROR: code indent should never use tabs
#13009: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12971:
+^Icase 13:$

ERROR: code indent should never use tabs
#13010: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12972:
+^I  return 40; /* addmi */$

ERROR: code indent should never use tabs
#13011: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12973:
+^Icase 14:$

ERROR: code indent should never use tabs
#13012: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12974:
+^I  return 431; /* s32c1i */$

ERROR: code indent should never use tabs
#13013: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12975:
+^Icase 15:$

ERROR: code indent should never use tabs
#13014: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12976:
+^I  return 430; /* s32ri */$

ERROR: code indent should never use tabs
#13015: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12977:
+^I}$

ERROR: that open brace { should be on the previous line
#13018: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12980:
+      switch (Field_op2_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#13019: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12981:
+^I{$

ERROR: code indent should never use tabs
#13020: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12982:
+^Icase 0:$

ERROR: code indent should never use tabs
#13021: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12983:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13021: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12983:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13022: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12984:
+^I    {$

ERROR: code indent should never use tabs
#13023: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12985:
+^I    case 8:$

ERROR: code indent should never use tabs
#13024: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12986:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13024: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12986:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13025: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12987:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13027: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12989:
+^I^Ireturn 281; /* mula.dd.ll.ldinc */$

ERROR: code indent should never use tabs
#13028: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12990:
+^I      break;$

ERROR: code indent should never use tabs
#13029: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12991:
+^I    case 9:$

ERROR: code indent should never use tabs
#13030: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12992:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13030: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12992:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13031: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12993:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13033: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12995:
+^I^Ireturn 283; /* mula.dd.hl.ldinc */$

ERROR: code indent should never use tabs
#13034: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12996:
+^I      break;$

ERROR: code indent should never use tabs
#13035: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12997:
+^I    case 10:$

ERROR: code indent should never use tabs
#13036: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12998:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13036: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12998:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13037: FILE: target/xtensa/core-dc232b/xtensa-modules.c:12999:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13039: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13001:
+^I^Ireturn 285; /* mula.dd.lh.ldinc */$

ERROR: code indent should never use tabs
#13040: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13002:
+^I      break;$

ERROR: code indent should never use tabs
#13041: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13003:
+^I    case 11:$

ERROR: code indent should never use tabs
#13042: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13004:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13042: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13004:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13043: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13005:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13045: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13007:
+^I^Ireturn 287; /* mula.dd.hh.ldinc */$

ERROR: code indent should never use tabs
#13046: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13008:
+^I      break;$

ERROR: code indent should never use tabs
#13047: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13009:
+^I    }$

ERROR: code indent should never use tabs
#13048: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13010:
+^I  break;$

ERROR: code indent should never use tabs
#13049: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13011:
+^Icase 1:$

ERROR: code indent should never use tabs
#13050: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13012:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13050: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13012:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13051: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13013:
+^I    {$

ERROR: code indent should never use tabs
#13052: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13014:
+^I    case 8:$

ERROR: code indent should never use tabs
#13053: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13015:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13053: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13015:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13054: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13016:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13056: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13018:
+^I^Ireturn 280; /* mula.dd.ll.lddec */$

ERROR: code indent should never use tabs
#13057: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13019:
+^I      break;$

ERROR: code indent should never use tabs
#13058: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13020:
+^I    case 9:$

ERROR: code indent should never use tabs
#13059: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13021:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13059: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13021:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13060: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13022:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13062: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13024:
+^I^Ireturn 282; /* mula.dd.hl.lddec */$

ERROR: code indent should never use tabs
#13063: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13025:
+^I      break;$

ERROR: code indent should never use tabs
#13064: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13026:
+^I    case 10:$

ERROR: code indent should never use tabs
#13065: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13027:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13065: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13027:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13066: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13028:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13068: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13030:
+^I^Ireturn 284; /* mula.dd.lh.lddec */$

ERROR: code indent should never use tabs
#13069: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13031:
+^I      break;$

ERROR: code indent should never use tabs
#13070: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13032:
+^I    case 11:$

ERROR: code indent should never use tabs
#13071: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13033:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13071: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13033:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13072: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13034:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13074: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13036:
+^I^Ireturn 286; /* mula.dd.hh.lddec */$

ERROR: code indent should never use tabs
#13075: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13037:
+^I      break;$

ERROR: code indent should never use tabs
#13076: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13038:
+^I    }$

ERROR: code indent should never use tabs
#13077: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13039:
+^I  break;$

ERROR: code indent should never use tabs
#13078: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13040:
+^Icase 2:$

ERROR: code indent should never use tabs
#13079: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13041:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13079: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13041:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13080: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13042:
+^I    {$

ERROR: code indent should never use tabs
#13081: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13043:
+^I    case 4:$

ERROR: code indent should never use tabs
#13082: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13044:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13082: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13044:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13083: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13045:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13087: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13049:
+^I^Ireturn 236; /* mul.dd.ll */$

ERROR: code indent should never use tabs
#13088: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13050:
+^I      break;$

ERROR: code indent should never use tabs
#13089: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13051:
+^I    case 5:$

ERROR: code indent should never use tabs
#13090: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13052:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13090: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13052:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13091: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13053:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13095: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13057:
+^I^Ireturn 237; /* mul.dd.hl */$

ERROR: code indent should never use tabs
#13096: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13058:
+^I      break;$

ERROR: code indent should never use tabs
#13097: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13059:
+^I    case 6:$

ERROR: code indent should never use tabs
#13098: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13060:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13098: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13060:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13099: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13061:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13103: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13065:
+^I^Ireturn 238; /* mul.dd.lh */$

ERROR: code indent should never use tabs
#13104: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13066:
+^I      break;$

ERROR: code indent should never use tabs
#13105: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13067:
+^I    case 7:$

ERROR: code indent should never use tabs
#13106: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13068:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13106: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13068:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13107: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13069:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13111: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13073:
+^I^Ireturn 239; /* mul.dd.hh */$

ERROR: code indent should never use tabs
#13112: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13074:
+^I      break;$

ERROR: code indent should never use tabs
#13113: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13075:
+^I    case 8:$

ERROR: code indent should never use tabs
#13114: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13076:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13114: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13076:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13115: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13077:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13119: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13081:
+^I^Ireturn 264; /* mula.dd.ll */$

ERROR: code indent should never use tabs
#13120: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13082:
+^I      break;$

ERROR: code indent should never use tabs
#13121: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13083:
+^I    case 9:$

ERROR: code indent should never use tabs
#13122: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13084:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13122: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13084:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13123: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13085:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13127: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13089:
+^I^Ireturn 265; /* mula.dd.hl */$

ERROR: code indent should never use tabs
#13128: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13090:
+^I      break;$

ERROR: code indent should never use tabs
#13129: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13091:
+^I    case 10:$

ERROR: code indent should never use tabs
#13130: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13092:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13130: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13092:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13131: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13093:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13135: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13097:
+^I^Ireturn 266; /* mula.dd.lh */$

ERROR: code indent should never use tabs
#13136: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13098:
+^I      break;$

ERROR: code indent should never use tabs
#13137: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13099:
+^I    case 11:$

ERROR: code indent should never use tabs
#13138: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13100:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13138: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13100:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13139: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13101:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13143: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13105:
+^I^Ireturn 267; /* mula.dd.hh */$

ERROR: code indent should never use tabs
#13144: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13106:
+^I      break;$

ERROR: code indent should never use tabs
#13145: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13107:
+^I    case 12:$

ERROR: code indent should never use tabs
#13146: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13108:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13146: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13108:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13147: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13109:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13151: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13113:
+^I^Ireturn 268; /* muls.dd.ll */$

ERROR: code indent should never use tabs
#13152: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13114:
+^I      break;$

ERROR: code indent should never use tabs
#13153: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13115:
+^I    case 13:$

ERROR: code indent should never use tabs
#13154: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13116:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13154: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13116:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13155: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13117:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13159: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13121:
+^I^Ireturn 269; /* muls.dd.hl */$

ERROR: code indent should never use tabs
#13160: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13122:
+^I      break;$

ERROR: code indent should never use tabs
#13161: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13123:
+^I    case 14:$

ERROR: code indent should never use tabs
#13162: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13124:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13162: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13124:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13163: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13125:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13167: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13129:
+^I^Ireturn 270; /* muls.dd.lh */$

ERROR: code indent should never use tabs
#13168: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13130:
+^I      break;$

ERROR: code indent should never use tabs
#13169: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13131:
+^I    case 15:$

ERROR: code indent should never use tabs
#13170: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13132:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13170: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13132:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13171: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13133:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13175: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13137:
+^I^Ireturn 271; /* muls.dd.hh */$

ERROR: code indent should never use tabs
#13176: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13138:
+^I      break;$

ERROR: code indent should never use tabs
#13177: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13139:
+^I    }$

ERROR: code indent should never use tabs
#13178: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13140:
+^I  break;$

ERROR: code indent should never use tabs
#13179: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13141:
+^Icase 3:$

ERROR: code indent should never use tabs
#13180: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13142:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13180: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13142:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13181: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13143:
+^I    {$

ERROR: code indent should never use tabs
#13182: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13144:
+^I    case 4:$

ERROR: code indent should never use tabs
#13183: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13145:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13183: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13145:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13184: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13146:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13186: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13148:
+^I^Ireturn 228; /* mul.ad.ll */$

ERROR: code indent should never use tabs
#13187: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13149:
+^I      break;$

ERROR: code indent should never use tabs
#13188: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13150:
+^I    case 5:$

ERROR: code indent should never use tabs
#13189: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13151:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13189: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13151:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13190: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13152:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13192: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13154:
+^I^Ireturn 229; /* mul.ad.hl */$

ERROR: code indent should never use tabs
#13193: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13155:
+^I      break;$

ERROR: code indent should never use tabs
#13194: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13156:
+^I    case 6:$

ERROR: code indent should never use tabs
#13195: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13157:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13195: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13157:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13196: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13158:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13198: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13160:
+^I^Ireturn 230; /* mul.ad.lh */$

ERROR: code indent should never use tabs
#13199: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13161:
+^I      break;$

ERROR: code indent should never use tabs
#13200: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13162:
+^I    case 7:$

ERROR: code indent should never use tabs
#13201: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13163:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13201: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13163:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13202: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13164:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13204: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13166:
+^I^Ireturn 231; /* mul.ad.hh */$

ERROR: code indent should never use tabs
#13205: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13167:
+^I      break;$

ERROR: code indent should never use tabs
#13206: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13168:
+^I    case 8:$

ERROR: code indent should never use tabs
#13207: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13169:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13207: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13169:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13208: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13170:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13210: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13172:
+^I^Ireturn 248; /* mula.ad.ll */$

ERROR: code indent should never use tabs
#13211: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13173:
+^I      break;$

ERROR: code indent should never use tabs
#13212: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13174:
+^I    case 9:$

ERROR: code indent should never use tabs
#13213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13175:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13213: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13175:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13214: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13176:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13216: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13178:
+^I^Ireturn 249; /* mula.ad.hl */$

ERROR: code indent should never use tabs
#13217: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13179:
+^I      break;$

ERROR: code indent should never use tabs
#13218: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13180:
+^I    case 10:$

ERROR: code indent should never use tabs
#13219: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13181:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13219: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13181:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13220: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13182:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13222: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13184:
+^I^Ireturn 250; /* mula.ad.lh */$

ERROR: code indent should never use tabs
#13223: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13185:
+^I      break;$

ERROR: code indent should never use tabs
#13224: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13186:
+^I    case 11:$

ERROR: code indent should never use tabs
#13225: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13187:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13225: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13187:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13226: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13188:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13228: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13190:
+^I^Ireturn 251; /* mula.ad.hh */$

ERROR: code indent should never use tabs
#13229: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13191:
+^I      break;$

ERROR: code indent should never use tabs
#13230: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13192:
+^I    case 12:$

ERROR: code indent should never use tabs
#13231: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13193:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13231: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13193:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13232: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13194:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13234: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13196:
+^I^Ireturn 252; /* muls.ad.ll */$

ERROR: code indent should never use tabs
#13235: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13197:
+^I      break;$

ERROR: code indent should never use tabs
#13236: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13198:
+^I    case 13:$

ERROR: code indent should never use tabs
#13237: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13199:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13237: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13199:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13238: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13200:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13240: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13202:
+^I^Ireturn 253; /* muls.ad.hl */$

ERROR: code indent should never use tabs
#13241: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13203:
+^I      break;$

ERROR: code indent should never use tabs
#13242: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13204:
+^I    case 14:$

ERROR: code indent should never use tabs
#13243: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13205:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13243: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13205:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13244: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13206:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13246: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13208:
+^I^Ireturn 254; /* muls.ad.lh */$

ERROR: code indent should never use tabs
#13247: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13209:
+^I      break;$

ERROR: code indent should never use tabs
#13248: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13210:
+^I    case 15:$

ERROR: code indent should never use tabs
#13249: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13211:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13249: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13211:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13250: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13212:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13252: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13214:
+^I^Ireturn 255; /* muls.ad.hh */$

ERROR: code indent should never use tabs
#13253: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13215:
+^I      break;$

ERROR: code indent should never use tabs
#13254: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13216:
+^I    }$

ERROR: code indent should never use tabs
#13255: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13217:
+^I  break;$

ERROR: code indent should never use tabs
#13256: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13218:
+^Icase 4:$

ERROR: code indent should never use tabs
#13257: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13219:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13257: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13219:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13258: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13220:
+^I    {$

ERROR: code indent should never use tabs
#13259: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13221:
+^I    case 8:$

ERROR: code indent should never use tabs
#13260: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13222:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13260: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13222:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13261: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13223:
+^I^Ireturn 273; /* mula.da.ll.ldinc */$

ERROR: code indent should never use tabs
#13262: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13224:
+^I      break;$

ERROR: code indent should never use tabs
#13263: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13225:
+^I    case 9:$

ERROR: code indent should never use tabs
#13264: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13226:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13264: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13226:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13265: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13227:
+^I^Ireturn 275; /* mula.da.hl.ldinc */$

ERROR: code indent should never use tabs
#13266: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13228:
+^I      break;$

ERROR: code indent should never use tabs
#13267: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13229:
+^I    case 10:$

ERROR: code indent should never use tabs
#13268: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13230:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13268: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13230:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13269: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13231:
+^I^Ireturn 277; /* mula.da.lh.ldinc */$

ERROR: code indent should never use tabs
#13270: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13232:
+^I      break;$

ERROR: code indent should never use tabs
#13271: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13233:
+^I    case 11:$

ERROR: code indent should never use tabs
#13272: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13234:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13272: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13234:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13273: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13235:
+^I^Ireturn 279; /* mula.da.hh.ldinc */$

ERROR: code indent should never use tabs
#13274: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13236:
+^I      break;$

ERROR: code indent should never use tabs
#13275: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13237:
+^I    }$

ERROR: code indent should never use tabs
#13276: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13238:
+^I  break;$

ERROR: code indent should never use tabs
#13277: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13239:
+^Icase 5:$

ERROR: code indent should never use tabs
#13278: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13240:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13278: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13240:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13279: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13241:
+^I    {$

ERROR: code indent should never use tabs
#13280: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13242:
+^I    case 8:$

ERROR: code indent should never use tabs
#13281: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13243:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13281: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13243:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13282: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13244:
+^I^Ireturn 272; /* mula.da.ll.lddec */$

ERROR: code indent should never use tabs
#13283: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13245:
+^I      break;$

ERROR: code indent should never use tabs
#13284: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13246:
+^I    case 9:$

ERROR: code indent should never use tabs
#13285: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13247:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13285: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13247:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13286: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13248:
+^I^Ireturn 274; /* mula.da.hl.lddec */$

ERROR: code indent should never use tabs
#13287: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13249:
+^I      break;$

ERROR: code indent should never use tabs
#13288: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13250:
+^I    case 10:$

ERROR: code indent should never use tabs
#13289: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13251:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13289: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13251:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13290: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13252:
+^I^Ireturn 276; /* mula.da.lh.lddec */$

ERROR: code indent should never use tabs
#13291: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13253:
+^I      break;$

ERROR: code indent should never use tabs
#13292: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13254:
+^I    case 11:$

ERROR: code indent should never use tabs
#13293: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13255:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13293: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13255:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13294: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13256:
+^I^Ireturn 278; /* mula.da.hh.lddec */$

ERROR: code indent should never use tabs
#13295: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13257:
+^I      break;$

ERROR: code indent should never use tabs
#13296: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13258:
+^I    }$

ERROR: code indent should never use tabs
#13297: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13259:
+^I  break;$

ERROR: code indent should never use tabs
#13298: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13260:
+^Icase 6:$

ERROR: code indent should never use tabs
#13299: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13261:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13299: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13261:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13300: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13262:
+^I    {$

ERROR: code indent should never use tabs
#13301: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13263:
+^I    case 4:$

ERROR: code indent should never use tabs
#13302: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13264:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13302: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13264:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13303: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13265:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13305: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13267:
+^I^Ireturn 232; /* mul.da.ll */$

ERROR: code indent should never use tabs
#13306: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13268:
+^I      break;$

ERROR: code indent should never use tabs
#13307: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13269:
+^I    case 5:$

ERROR: code indent should never use tabs
#13308: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13270:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13308: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13270:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13309: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13271:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13311: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13273:
+^I^Ireturn 233; /* mul.da.hl */$

ERROR: code indent should never use tabs
#13312: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13274:
+^I      break;$

ERROR: code indent should never use tabs
#13313: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13275:
+^I    case 6:$

ERROR: code indent should never use tabs
#13314: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13276:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13314: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13276:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13315: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13277:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13317: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13279:
+^I^Ireturn 234; /* mul.da.lh */$

ERROR: code indent should never use tabs
#13318: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13280:
+^I      break;$

ERROR: code indent should never use tabs
#13319: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13281:
+^I    case 7:$

ERROR: code indent should never use tabs
#13320: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13282:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13320: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13282:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13321: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13283:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13323: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13285:
+^I^Ireturn 235; /* mul.da.hh */$

ERROR: code indent should never use tabs
#13324: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13286:
+^I      break;$

ERROR: code indent should never use tabs
#13325: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13287:
+^I    case 8:$

ERROR: code indent should never use tabs
#13326: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13288:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13326: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13288:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13327: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13289:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13329: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13291:
+^I^Ireturn 256; /* mula.da.ll */$

ERROR: code indent should never use tabs
#13330: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13292:
+^I      break;$

ERROR: code indent should never use tabs
#13331: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13293:
+^I    case 9:$

ERROR: code indent should never use tabs
#13332: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13294:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13332: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13294:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13333: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13295:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13335: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13297:
+^I^Ireturn 257; /* mula.da.hl */$

ERROR: code indent should never use tabs
#13336: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13298:
+^I      break;$

ERROR: code indent should never use tabs
#13337: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13299:
+^I    case 10:$

ERROR: code indent should never use tabs
#13338: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13300:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13338: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13300:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13339: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13301:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13341: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13303:
+^I^Ireturn 258; /* mula.da.lh */$

ERROR: code indent should never use tabs
#13342: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13304:
+^I      break;$

ERROR: code indent should never use tabs
#13343: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13305:
+^I    case 11:$

ERROR: code indent should never use tabs
#13344: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13306:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13344: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13306:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13345: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13307:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13347: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13309:
+^I^Ireturn 259; /* mula.da.hh */$

ERROR: code indent should never use tabs
#13348: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13310:
+^I      break;$

ERROR: code indent should never use tabs
#13349: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13311:
+^I    case 12:$

ERROR: code indent should never use tabs
#13350: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13312:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13350: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13312:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13351: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13313:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13353: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13315:
+^I^Ireturn 260; /* muls.da.ll */$

ERROR: code indent should never use tabs
#13354: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13316:
+^I      break;$

ERROR: code indent should never use tabs
#13355: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13317:
+^I    case 13:$

ERROR: code indent should never use tabs
#13356: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13318:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13356: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13318:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13357: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13319:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13359: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13321:
+^I^Ireturn 261; /* muls.da.hl */$

ERROR: code indent should never use tabs
#13360: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13322:
+^I      break;$

ERROR: code indent should never use tabs
#13361: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13323:
+^I    case 14:$

ERROR: code indent should never use tabs
#13362: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13324:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13362: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13324:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13363: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13325:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13365: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13327:
+^I^Ireturn 262; /* muls.da.lh */$

ERROR: code indent should never use tabs
#13366: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13328:
+^I      break;$

ERROR: code indent should never use tabs
#13367: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13329:
+^I    case 15:$

ERROR: code indent should never use tabs
#13368: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13330:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13368: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13330:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13369: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13331:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13371: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13333:
+^I^Ireturn 263; /* muls.da.hh */$

ERROR: code indent should never use tabs
#13372: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13334:
+^I      break;$

ERROR: code indent should never use tabs
#13373: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13335:
+^I    }$

ERROR: code indent should never use tabs
#13374: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13336:
+^I  break;$

ERROR: code indent should never use tabs
#13375: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13337:
+^Icase 7:$

ERROR: code indent should never use tabs
#13376: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13338:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13376: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13338:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13377: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13339:
+^I    {$

ERROR: code indent should never use tabs
#13378: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13340:
+^I    case 0:$

ERROR: code indent should never use tabs
#13379: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13341:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13379: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13341:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13380: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13342:
+^I^Ireturn 224; /* umul.aa.ll */$

ERROR: code indent should never use tabs
#13381: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13343:
+^I      break;$

ERROR: code indent should never use tabs
#13382: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13344:
+^I    case 1:$

ERROR: code indent should never use tabs
#13383: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13345:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13383: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13345:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13384: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13346:
+^I^Ireturn 225; /* umul.aa.hl */$

ERROR: code indent should never use tabs
#13385: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13347:
+^I      break;$

ERROR: code indent should never use tabs
#13386: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13348:
+^I    case 2:$

ERROR: code indent should never use tabs
#13387: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13349:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13387: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13349:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13388: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13350:
+^I^Ireturn 226; /* umul.aa.lh */$

ERROR: code indent should never use tabs
#13389: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13351:
+^I      break;$

ERROR: code indent should never use tabs
#13390: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13352:
+^I    case 3:$

ERROR: code indent should never use tabs
#13391: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13353:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13391: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13353:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13392: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13354:
+^I^Ireturn 227; /* umul.aa.hh */$

ERROR: code indent should never use tabs
#13393: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13355:
+^I      break;$

ERROR: code indent should never use tabs
#13394: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13356:
+^I    case 4:$

ERROR: code indent should never use tabs
#13395: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13357:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13395: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13357:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13396: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13358:
+^I^Ireturn 220; /* mul.aa.ll */$

ERROR: code indent should never use tabs
#13397: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13359:
+^I      break;$

ERROR: code indent should never use tabs
#13398: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13360:
+^I    case 5:$

ERROR: code indent should never use tabs
#13399: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13361:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13399: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13361:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13400: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13362:
+^I^Ireturn 221; /* mul.aa.hl */$

ERROR: code indent should never use tabs
#13401: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13363:
+^I      break;$

ERROR: code indent should never use tabs
#13402: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13364:
+^I    case 6:$

ERROR: code indent should never use tabs
#13403: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13365:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13403: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13365:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13404: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13366:
+^I^Ireturn 222; /* mul.aa.lh */$

ERROR: code indent should never use tabs
#13405: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13367:
+^I      break;$

ERROR: code indent should never use tabs
#13406: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13368:
+^I    case 7:$

ERROR: code indent should never use tabs
#13407: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13369:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13407: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13369:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13408: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13370:
+^I^Ireturn 223; /* mul.aa.hh */$

ERROR: code indent should never use tabs
#13409: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13371:
+^I      break;$

ERROR: code indent should never use tabs
#13410: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13372:
+^I    case 8:$

ERROR: code indent should never use tabs
#13411: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13373:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13411: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13373:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13412: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13374:
+^I^Ireturn 240; /* mula.aa.ll */$

ERROR: code indent should never use tabs
#13413: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13375:
+^I      break;$

ERROR: code indent should never use tabs
#13414: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13376:
+^I    case 9:$

ERROR: code indent should never use tabs
#13415: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13377:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13415: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13377:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13416: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13378:
+^I^Ireturn 241; /* mula.aa.hl */$

ERROR: code indent should never use tabs
#13417: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13379:
+^I      break;$

ERROR: code indent should never use tabs
#13418: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13380:
+^I    case 10:$

ERROR: code indent should never use tabs
#13419: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13381:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13419: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13381:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13420: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13382:
+^I^Ireturn 242; /* mula.aa.lh */$

ERROR: code indent should never use tabs
#13421: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13383:
+^I      break;$

ERROR: code indent should never use tabs
#13422: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13384:
+^I    case 11:$

ERROR: code indent should never use tabs
#13423: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13385:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13423: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13385:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13424: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13386:
+^I^Ireturn 243; /* mula.aa.hh */$

ERROR: code indent should never use tabs
#13425: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13387:
+^I      break;$

ERROR: code indent should never use tabs
#13426: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13388:
+^I    case 12:$

ERROR: code indent should never use tabs
#13427: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13389:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13427: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13389:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13428: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13390:
+^I^Ireturn 244; /* muls.aa.ll */$

ERROR: code indent should never use tabs
#13429: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13391:
+^I      break;$

ERROR: code indent should never use tabs
#13430: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13392:
+^I    case 13:$

ERROR: code indent should never use tabs
#13431: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13393:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13431: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13393:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13432: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13394:
+^I^Ireturn 245; /* muls.aa.hl */$

ERROR: code indent should never use tabs
#13433: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13395:
+^I      break;$

ERROR: code indent should never use tabs
#13434: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13396:
+^I    case 14:$

ERROR: code indent should never use tabs
#13435: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13397:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13435: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13397:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13436: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13398:
+^I^Ireturn 246; /* muls.aa.lh */$

ERROR: code indent should never use tabs
#13437: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13399:
+^I      break;$

ERROR: code indent should never use tabs
#13438: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13400:
+^I    case 15:$

ERROR: code indent should never use tabs
#13439: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13401:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13439: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13401:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13440: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13402:
+^I^Ireturn 247; /* muls.aa.hh */$

ERROR: code indent should never use tabs
#13441: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13403:
+^I      break;$

ERROR: code indent should never use tabs
#13442: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13404:
+^I    }$

ERROR: code indent should never use tabs
#13443: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13405:
+^I  break;$

ERROR: code indent should never use tabs
#13444: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13406:
+^Icase 8:$

ERROR: code indent should never use tabs
#13445: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13407:
+^I  if (Field_op1_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13445: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13407:
+	  if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13446: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13408:
+^I      Field_t_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#13447: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13409:
+^I      Field_rhi_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13448: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13410:
+^I    return 289; /* ldinc */$

ERROR: code indent should never use tabs
#13449: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13411:
+^I  break;$

ERROR: code indent should never use tabs
#13450: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13412:
+^Icase 9:$

ERROR: code indent should never use tabs
#13451: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13413:
+^I  if (Field_op1_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13451: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13413:
+	  if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13452: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13414:
+^I      Field_t_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#13453: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13415:
+^I      Field_rhi_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13454: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13416:
+^I    return 288; /* lddec */$

ERROR: code indent should never use tabs
#13455: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13417:
+^I  break;$

ERROR: code indent should never use tabs
#13456: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13418:
+^I}$

ERROR: that open brace { should be on the previous line
#13459: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13421:
+      switch (Field_n_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#13460: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13422:
+^I{$

ERROR: code indent should never use tabs
#13461: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13423:
+^Icase 0:$

ERROR: code indent should never use tabs
#13462: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13424:
+^I  return 76; /* call0 */$

ERROR: code indent should never use tabs
#13463: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13425:
+^Icase 1:$

ERROR: code indent should never use tabs
#13464: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13426:
+^I  return 7; /* call4 */$

ERROR: code indent should never use tabs
#13465: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13427:
+^Icase 2:$

ERROR: code indent should never use tabs
#13466: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13428:
+^I  return 6; /* call8 */$

ERROR: code indent should never use tabs
#13467: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13429:
+^Icase 3:$

ERROR: code indent should never use tabs
#13468: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13430:
+^I  return 5; /* call12 */$

ERROR: code indent should never use tabs
#13469: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13431:
+^I}$

ERROR: that open brace { should be on the previous line
#13472: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13434:
+      switch (Field_n_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#13473: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13435:
+^I{$

ERROR: code indent should never use tabs
#13474: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13436:
+^Icase 0:$

ERROR: code indent should never use tabs
#13475: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13437:
+^I  return 80; /* j */$

ERROR: code indent should never use tabs
#13476: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13438:
+^Icase 1:$

ERROR: code indent should never use tabs
#13477: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13439:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13477: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13439:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13478: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13440:
+^I    {$

ERROR: code indent should never use tabs
#13479: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13441:
+^I    case 0:$

ERROR: code indent should never use tabs
#13480: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13442:
+^I      return 72; /* beqz */$

ERROR: code indent should never use tabs
#13481: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13443:
+^I    case 1:$

ERROR: code indent should never use tabs
#13482: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13444:
+^I      return 73; /* bnez */$

ERROR: code indent should never use tabs
#13483: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13445:
+^I    case 2:$

ERROR: code indent should never use tabs
#13484: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13446:
+^I      return 75; /* bltz */$

ERROR: code indent should never use tabs
#13485: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13447:
+^I    case 3:$

ERROR: code indent should never use tabs
#13486: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13448:
+^I      return 74; /* bgez */$

ERROR: code indent should never use tabs
#13487: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13449:
+^I    }$

ERROR: code indent should never use tabs
#13488: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13450:
+^I  break;$

ERROR: code indent should never use tabs
#13489: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13451:
+^Icase 2:$

ERROR: code indent should never use tabs
#13490: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13452:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13490: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13452:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13491: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13453:
+^I    {$

ERROR: code indent should never use tabs
#13492: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13454:
+^I    case 0:$

ERROR: code indent should never use tabs
#13493: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13455:
+^I      return 52; /* beqi */$

ERROR: code indent should never use tabs
#13494: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13456:
+^I    case 1:$

ERROR: code indent should never use tabs
#13495: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13457:
+^I      return 53; /* bnei */$

ERROR: code indent should never use tabs
#13496: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13458:
+^I    case 2:$

ERROR: code indent should never use tabs
#13497: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13459:
+^I      return 55; /* blti */$

ERROR: code indent should never use tabs
#13498: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13460:
+^I    case 3:$

ERROR: code indent should never use tabs
#13499: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13461:
+^I      return 54; /* bgei */$

ERROR: code indent should never use tabs
#13500: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13462:
+^I    }$

ERROR: code indent should never use tabs
#13501: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13463:
+^I  break;$

ERROR: code indent should never use tabs
#13502: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13464:
+^Icase 3:$

ERROR: code indent should never use tabs
#13503: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13465:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13503: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13465:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13504: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13466:
+^I    {$

ERROR: code indent should never use tabs
#13505: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13467:
+^I    case 0:$

ERROR: code indent should never use tabs
#13506: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13468:
+^I      return 11; /* entry */$

ERROR: code indent should never use tabs
#13507: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13469:
+^I    case 1:$

ERROR: code indent should never use tabs
#13508: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13470:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13508: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13470:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13509: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13471:
+^I^I{$

ERROR: code indent should never use tabs
#13510: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13472:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#13511: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13473:
+^I^I  return 87; /* loop */$

ERROR: code indent should never use tabs
#13512: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13474:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#13513: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13475:
+^I^I  return 88; /* loopnez */$

ERROR: code indent should never use tabs
#13514: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13476:
+^I^Icase 10:$

ERROR: code indent should never use tabs
#13515: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13477:
+^I^I  return 89; /* loopgtz */$

ERROR: code indent should never use tabs
#13516: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13478:
+^I^I}$

ERROR: code indent should never use tabs
#13517: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13479:
+^I      break;$

ERROR: code indent should never use tabs
#13518: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13480:
+^I    case 2:$

ERROR: code indent should never use tabs
#13519: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13481:
+^I      return 59; /* bltui */$

ERROR: code indent should never use tabs
#13520: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13482:
+^I    case 3:$

ERROR: code indent should never use tabs
#13521: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13483:
+^I      return 58; /* bgeui */$

ERROR: code indent should never use tabs
#13522: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13484:
+^I    }$

ERROR: code indent should never use tabs
#13523: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13485:
+^I  break;$

ERROR: code indent should never use tabs
#13524: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13486:
+^I}$

ERROR: that open brace { should be on the previous line
#13527: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13489:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#13528: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13490:
+^I{$

ERROR: code indent should never use tabs
#13529: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13491:
+^Icase 0:$

ERROR: code indent should never use tabs
#13530: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13492:
+^I  return 67; /* bnone */$

ERROR: code indent should never use tabs
#13531: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13493:
+^Icase 1:$

ERROR: code indent should never use tabs
#13532: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13494:
+^I  return 60; /* beq */$

ERROR: code indent should never use tabs
#13533: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13495:
+^Icase 2:$

ERROR: code indent should never use tabs
#13534: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13496:
+^I  return 63; /* blt */$

ERROR: code indent should never use tabs
#13535: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13497:
+^Icase 3:$

ERROR: code indent should never use tabs
#13536: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13498:
+^I  return 65; /* bltu */$

ERROR: code indent should never use tabs
#13537: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13499:
+^Icase 4:$

ERROR: code indent should never use tabs
#13538: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13500:
+^I  return 68; /* ball */$

ERROR: code indent should never use tabs
#13539: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13501:
+^Icase 5:$

ERROR: code indent should never use tabs
#13540: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13502:
+^I  return 70; /* bbc */$

ERROR: code indent should never use tabs
#13541: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13503:
+^Icase 6:$

ERROR: code indent should never use tabs
#13542: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13504:
+^Icase 7:$

ERROR: code indent should never use tabs
#13543: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13505:
+^I  return 56; /* bbci */$

ERROR: code indent should never use tabs
#13544: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13506:
+^Icase 8:$

ERROR: code indent should never use tabs
#13545: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13507:
+^I  return 66; /* bany */$

ERROR: code indent should never use tabs
#13546: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13508:
+^Icase 9:$

ERROR: code indent should never use tabs
#13547: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13509:
+^I  return 61; /* bne */$

ERROR: code indent should never use tabs
#13548: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13510:
+^Icase 10:$

ERROR: code indent should never use tabs
#13549: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13511:
+^I  return 62; /* bge */$

ERROR: code indent should never use tabs
#13550: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13512:
+^Icase 11:$

ERROR: code indent should never use tabs
#13551: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13513:
+^I  return 64; /* bgeu */$

ERROR: code indent should never use tabs
#13552: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13514:
+^Icase 12:$

ERROR: code indent should never use tabs
#13553: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13515:
+^I  return 69; /* bnall */$

ERROR: code indent should never use tabs
#13554: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13516:
+^Icase 13:$

ERROR: code indent should never use tabs
#13555: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13517:
+^I  return 71; /* bbs */$

ERROR: code indent should never use tabs
#13556: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13518:
+^Icase 14:$

ERROR: code indent should never use tabs
#13557: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13519:
+^Icase 15:$

ERROR: code indent should never use tabs
#13558: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13520:
+^I  return 57; /* bbsi */$

ERROR: code indent should never use tabs
#13559: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13521:
+^I}$

ERROR: that open brace { should be on the previous line
#13568: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13530:
+  switch (Field_op0_Slot_inst16b_get (insn))
+    {

ERROR: that open brace { should be on the previous line
#13571: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13533:
+      switch (Field_i_Slot_inst16b_get (insn))
+	{

ERROR: code indent should never use tabs
#13572: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13534:
+^I{$

ERROR: code indent should never use tabs
#13573: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13535:
+^Icase 0:$

ERROR: code indent should never use tabs
#13574: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13536:
+^I  return 33; /* movi.n */$

ERROR: code indent should never use tabs
#13575: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13537:
+^Icase 1:$

ERROR: code indent should never use tabs
#13576: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13538:
+^I  switch (Field_z_Slot_inst16b_get (insn))$

ERROR: that open brace { should be on the previous line
#13576: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13538:
+	  switch (Field_z_Slot_inst16b_get (insn))
+	    {

ERROR: code indent should never use tabs
#13577: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13539:
+^I    {$

ERROR: code indent should never use tabs
#13578: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13540:
+^I    case 0:$

ERROR: code indent should never use tabs
#13579: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13541:
+^I      return 28; /* beqz.n */$

ERROR: code indent should never use tabs
#13580: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13542:
+^I    case 1:$

ERROR: code indent should never use tabs
#13581: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13543:
+^I      return 29; /* bnez.n */$

ERROR: code indent should never use tabs
#13582: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13544:
+^I    }$

ERROR: code indent should never use tabs
#13583: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13545:
+^I  break;$

ERROR: code indent should never use tabs
#13584: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13546:
+^I}$

ERROR: that open brace { should be on the previous line
#13587: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13549:
+      switch (Field_r_Slot_inst16b_get (insn))
+	{

ERROR: code indent should never use tabs
#13588: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13550:
+^I{$

ERROR: code indent should never use tabs
#13589: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13551:
+^Icase 0:$

ERROR: code indent should never use tabs
#13590: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13552:
+^I  return 32; /* mov.n */$

ERROR: code indent should never use tabs
#13591: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13553:
+^Icase 15:$

ERROR: code indent should never use tabs
#13592: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13554:
+^I  switch (Field_t_Slot_inst16b_get (insn))$

ERROR: that open brace { should be on the previous line
#13592: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13554:
+	  switch (Field_t_Slot_inst16b_get (insn))
+	    {

ERROR: code indent should never use tabs
#13593: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13555:
+^I    {$

ERROR: code indent should never use tabs
#13594: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13556:
+^I    case 0:$

ERROR: code indent should never use tabs
#13595: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13557:
+^I      return 35; /* ret.n */$

ERROR: code indent should never use tabs
#13596: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13558:
+^I    case 1:$

ERROR: code indent should never use tabs
#13597: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13559:
+^I      return 15; /* retw.n */$

ERROR: code indent should never use tabs
#13598: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13560:
+^I    case 2:$

ERROR: code indent should never use tabs
#13599: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13561:
+^I      return 319; /* break.n */$

ERROR: code indent should never use tabs
#13600: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13562:
+^I    case 3:$

ERROR: code indent should never use tabs
#13601: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13563:
+^I      if (Field_s_Slot_inst16b_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13601: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13563:
+	      if (Field_s_Slot_inst16b_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13602: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13564:
+^I^Ireturn 34; /* nop.n */$

ERROR: code indent should never use tabs
#13603: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13565:
+^I      break;$

ERROR: code indent should never use tabs
#13604: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13566:
+^I    case 6:$

ERROR: code indent should never use tabs
#13605: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13567:
+^I      if (Field_s_Slot_inst16b_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13605: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13567:
+	      if (Field_s_Slot_inst16b_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13606: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13568:
+^I^Ireturn 30; /* ill.n */$

ERROR: code indent should never use tabs
#13607: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13569:
+^I      break;$

ERROR: code indent should never use tabs
#13608: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13570:
+^I    }$

ERROR: code indent should never use tabs
#13609: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13571:
+^I  break;$

ERROR: code indent should never use tabs
#13610: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13572:
+^I}$

ERROR: that open brace { should be on the previous line
#13619: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13581:
+  switch (Field_op0_Slot_inst16a_get (insn))
+    {

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#13633: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13595:
+
 ^

ERROR: trailing whitespace
#13633: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13595:
+^L$

ERROR: code indent should never use tabs
#13638: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13600:
+^I^I^I    xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#13645: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13607:
+^I^I^I    const xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#13652: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13614:
+^I^I^I^Ixtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#13659: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13621:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#13666: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13628:
+^I^I^I^Ixtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#13673: FILE: target/xtensa/core-dc232b/xtensa-modules.c:13635:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#14053: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14015:
+
 ^

ERROR: trailing whitespace
#14053: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14015:
+^L$

ERROR: space prohibited between function name and open parenthesis '('
#14088: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14050:
+format_decoder (const xtensa_insnbuf insn)

ERROR: braces {} are necessary for all arms of this statement
#14090: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14052:
+  if ((insn[0] & 0x8) == 0)
[...]

ERROR: braces {} are necessary for all arms of this statement
#14092: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14054:
+  if ((insn[0] & 0xc) == 0x8)
[...]

ERROR: braces {} are necessary for all arms of this statement
#14094: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14056:
+  if ((insn[0] & 0xe) == 0xc)
[...]

ERROR: space prohibited between function name and open parenthesis '('
#14119: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14081:
+length_decoder (const unsigned char *insn)

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#14125: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14087:
+
 ^

ERROR: trailing whitespace
#14125: FILE: target/xtensa/core-dc232b/xtensa-modules.c:14087:
+^L$

total: 1649 errors, 1 warnings, 14121 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
#65: FILE: target/xtensa/core-dc233c/xtensa-modules.c:27:
+
 ^

ERROR: trailing whitespace
#65: FILE: target/xtensa/core-dc233c/xtensa-modules.c:27:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#146: FILE: target/xtensa/core-dc233c/xtensa-modules.c:108:
+
 ^

ERROR: trailing whitespace
#146: FILE: target/xtensa/core-dc233c/xtensa-modules.c:108:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#313: FILE: target/xtensa/core-dc233c/xtensa-modules.c:275:
+
 ^

ERROR: trailing whitespace
#313: FILE: target/xtensa/core-dc233c/xtensa-modules.c:275:
+^L$

ERROR: code indent should never use tabs
#1562: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1524:
+^I^I    uint32 val ATTRIBUTE_UNUSED)$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1636:
+
 ^

ERROR: trailing whitespace
#1674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1636:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1681: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1643:
+
 ^

ERROR: trailing whitespace
#1681: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1643:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1694: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1656:
+
 ^

ERROR: trailing whitespace
#1694: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1656:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1705: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1667:
+
 ^

ERROR: trailing whitespace
#1705: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1667:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1771: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1733:
+
 ^

ERROR: trailing whitespace
#1771: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1733:
+^L$

ERROR: line over 90 characters
#2005: FILE: target/xtensa/core-dc233c/xtensa-modules.c:1967:
+  simm7_0 = ((((-((((imm7_0 >> 6) & 1)) & (((imm7_0 >> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0;

ERROR: that open brace { should be on the previous line
#2069: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2031:
+  switch (ai4const_0)
+    {

ERROR: trailing statements should be on next line
#2071: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2033:
+    case 0xffffffff: t_0 = 0; break;

ERROR: trailing statements should be on next line
#2072: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2034:
+    case 0x1: t_0 = 0x1; break;

ERROR: trailing statements should be on next line
#2073: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2035:
+    case 0x2: t_0 = 0x2; break;

ERROR: trailing statements should be on next line
#2074: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2036:
+    case 0x3: t_0 = 0x3; break;

ERROR: trailing statements should be on next line
#2075: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2037:
+    case 0x4: t_0 = 0x4; break;

ERROR: trailing statements should be on next line
#2076: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2038:
+    case 0x5: t_0 = 0x5; break;

ERROR: trailing statements should be on next line
#2077: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2039:
+    case 0x6: t_0 = 0x6; break;

ERROR: trailing statements should be on next line
#2078: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2040:
+    case 0x7: t_0 = 0x7; break;

ERROR: trailing statements should be on next line
#2079: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2041:
+    case 0x8: t_0 = 0x8; break;

ERROR: trailing statements should be on next line
#2080: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2042:
+    case 0x9: t_0 = 0x9; break;

ERROR: trailing statements should be on next line
#2081: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2043:
+    case 0xa: t_0 = 0xa; break;

ERROR: trailing statements should be on next line
#2082: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2044:
+    case 0xb: t_0 = 0xb; break;

ERROR: trailing statements should be on next line
#2083: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2045:
+    case 0xc: t_0 = 0xc; break;

ERROR: trailing statements should be on next line
#2084: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2046:
+    case 0xd: t_0 = 0xd; break;

ERROR: trailing statements should be on next line
#2085: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2047:
+    case 0xe: t_0 = 0xe; break;

ERROR: trailing statements should be on next line
#2086: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2048:
+    default: t_0 = 0xf; break;

ERROR: that open brace { should be on the previous line
#2107: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2069:
+  switch (b4const_0)
+    {

ERROR: trailing statements should be on next line
#2109: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2071:
+    case 0xffffffff: r_0 = 0; break;

ERROR: trailing statements should be on next line
#2110: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2072:
+    case 0x1: r_0 = 0x1; break;

ERROR: trailing statements should be on next line
#2111: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2073:
+    case 0x2: r_0 = 0x2; break;

ERROR: trailing statements should be on next line
#2112: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2074:
+    case 0x3: r_0 = 0x3; break;

ERROR: trailing statements should be on next line
#2113: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2075:
+    case 0x4: r_0 = 0x4; break;

ERROR: trailing statements should be on next line
#2114: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2076:
+    case 0x5: r_0 = 0x5; break;

ERROR: trailing statements should be on next line
#2115: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2077:
+    case 0x6: r_0 = 0x6; break;

ERROR: trailing statements should be on next line
#2116: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2078:
+    case 0x7: r_0 = 0x7; break;

ERROR: trailing statements should be on next line
#2117: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2079:
+    case 0x8: r_0 = 0x8; break;

ERROR: trailing statements should be on next line
#2118: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2080:
+    case 0xa: r_0 = 0x9; break;

ERROR: trailing statements should be on next line
#2119: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2081:
+    case 0xc: r_0 = 0xa; break;

ERROR: trailing statements should be on next line
#2120: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2082:
+    case 0x10: r_0 = 0xb; break;

ERROR: trailing statements should be on next line
#2121: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2083:
+    case 0x20: r_0 = 0xc; break;

ERROR: trailing statements should be on next line
#2122: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2084:
+    case 0x40: r_0 = 0xd; break;

ERROR: trailing statements should be on next line
#2123: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2085:
+    case 0x80: r_0 = 0xe; break;

ERROR: trailing statements should be on next line
#2124: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2086:
+    default: r_0 = 0xf; break;

ERROR: that open brace { should be on the previous line
#2145: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2107:
+  switch (b4constu_0)
+    {

ERROR: trailing statements should be on next line
#2147: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2109:
+    case 0x8000: r_0 = 0; break;

ERROR: trailing statements should be on next line
#2148: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2110:
+    case 0x10000: r_0 = 0x1; break;

ERROR: trailing statements should be on next line
#2149: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2111:
+    case 0x2: r_0 = 0x2; break;

ERROR: trailing statements should be on next line
#2150: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2112:
+    case 0x3: r_0 = 0x3; break;

ERROR: trailing statements should be on next line
#2151: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2113:
+    case 0x4: r_0 = 0x4; break;

ERROR: trailing statements should be on next line
#2152: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2114:
+    case 0x5: r_0 = 0x5; break;

ERROR: trailing statements should be on next line
#2153: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2115:
+    case 0x6: r_0 = 0x6; break;

ERROR: trailing statements should be on next line
#2154: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2116:
+    case 0x7: r_0 = 0x7; break;

ERROR: trailing statements should be on next line
#2155: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2117:
+    case 0x8: r_0 = 0x8; break;

ERROR: trailing statements should be on next line
#2156: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2118:
+    case 0xa: r_0 = 0x9; break;

ERROR: trailing statements should be on next line
#2157: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2119:
+    case 0xc: r_0 = 0xa; break;

ERROR: trailing statements should be on next line
#2158: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2120:
+    case 0x10: r_0 = 0xb; break;

ERROR: trailing statements should be on next line
#2159: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2121:
+    case 0x20: r_0 = 0xc; break;

ERROR: trailing statements should be on next line
#2160: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2122:
+    case 0x40: r_0 = 0xd; break;

ERROR: trailing statements should be on next line
#2161: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2123:
+    case 0x80: r_0 = 0xe; break;

ERROR: trailing statements should be on next line
#2162: FILE: target/xtensa/core-dc233c/xtensa-modules.c:2124:
+    default: r_0 = 0xf; break;

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#3073: FILE: target/xtensa/core-dc233c/xtensa-modules.c:3035:
+
 ^

ERROR: trailing whitespace
#3073: FILE: target/xtensa/core-dc233c/xtensa-modules.c:3035:
+^L$

WARNING: line over 80 characters
#6596: FILE: target/xtensa/core-dc233c/xtensa-modules.c:6558:
+    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
#6934: FILE: target/xtensa/core-dc233c/xtensa-modules.c:6896:
+
 ^

ERROR: trailing whitespace
#6934: FILE: target/xtensa/core-dc233c/xtensa-modules.c:6896:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#11457: FILE: target/xtensa/core-dc233c/xtensa-modules.c:11419:
+
 ^

ERROR: trailing whitespace
#11457: FILE: target/xtensa/core-dc233c/xtensa-modules.c:11419:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#13274: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13236:
+
 ^

ERROR: trailing whitespace
#13274: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13236:
+^L$

ERROR: that open brace { should be on the previous line
#13280: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13242:
+  switch (Field_op0_Slot_inst_get (insn))
+    {

ERROR: that open brace { should be on the previous line
#13283: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13245:
+      switch (Field_op1_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#13284: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13246:
+^I{$

ERROR: code indent should never use tabs
#13285: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13247:
+^Icase 0:$

ERROR: code indent should never use tabs
#13286: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13248:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13286: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13248:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13287: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13249:
+^I    {$

ERROR: code indent should never use tabs
#13288: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13250:
+^I    case 0:$

ERROR: code indent should never use tabs
#13289: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13251:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13289: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13251:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13290: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13252:
+^I^I{$

ERROR: code indent should never use tabs
#13291: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13253:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13292: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13254:
+^I^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13292: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13254:
+		  switch (Field_m_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#13293: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13255:
+^I^I    {$

ERROR: code indent should never use tabs
#13294: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13256:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#13295: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13257:
+^I^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#13295: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13257:
+		      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#13296: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13258:
+^I^I^I  Field_n_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#13297: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13259:
+^I^I^Ireturn OPCODE_ILL;$

ERROR: code indent should never use tabs
#13298: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13260:
+^I^I      break;$

ERROR: code indent should never use tabs
#13299: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13261:
+^I^I    case 2:$

ERROR: code indent should never use tabs
#13300: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13262:
+^I^I      switch (Field_n_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13300: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13262:
+		      switch (Field_n_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#13301: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13263:
+^I^I^I{$

ERROR: code indent should never use tabs
#13302: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13264:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#13303: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13265:
+^I^I^I  return OPCODE_RET;$

ERROR: code indent should never use tabs
#13304: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13266:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#13305: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13267:
+^I^I^I  return OPCODE_RETW;$

ERROR: code indent should never use tabs
#13306: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13268:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#13307: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13269:
+^I^I^I  return OPCODE_JX;$

ERROR: code indent should never use tabs
#13308: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13270:
+^I^I^I}$

ERROR: code indent should never use tabs
#13309: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13271:
+^I^I      break;$

ERROR: code indent should never use tabs
#13310: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13272:
+^I^I    case 3:$

ERROR: code indent should never use tabs
#13311: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13273:
+^I^I      switch (Field_n_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13311: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13273:
+		      switch (Field_n_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#13312: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13274:
+^I^I^I{$

ERROR: code indent should never use tabs
#13313: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13275:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#13314: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13276:
+^I^I^I  return OPCODE_CALLX0;$

ERROR: code indent should never use tabs
#13315: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13277:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#13316: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13278:
+^I^I^I  return OPCODE_CALLX4;$

ERROR: code indent should never use tabs
#13317: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13279:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#13318: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13280:
+^I^I^I  return OPCODE_CALLX8;$

ERROR: code indent should never use tabs
#13319: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13281:
+^I^I^Icase 3:$

ERROR: code indent should never use tabs
#13320: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13282:
+^I^I^I  return OPCODE_CALLX12;$

ERROR: code indent should never use tabs
#13321: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13283:
+^I^I^I}$

ERROR: code indent should never use tabs
#13322: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13284:
+^I^I      break;$

ERROR: code indent should never use tabs
#13323: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13285:
+^I^I    }$

ERROR: code indent should never use tabs
#13324: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13286:
+^I^I  break;$

ERROR: code indent should never use tabs
#13325: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13287:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13326: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13288:
+^I^I  return OPCODE_MOVSP;$

ERROR: code indent should never use tabs
#13327: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13289:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#13328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13290:
+^I^I  if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: that open brace { should be on the previous line
#13328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13290:
+		  if (Field_s_Slot_inst_get (insn) == 0)
+		    {

ERROR: suspect code indent for conditional statements (18, 22)
#13328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13290:
+		  if (Field_s_Slot_inst_get (insn) == 0)
+		    {

ERROR: code indent should never use tabs
#13329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13291:
+^I^I    {$

ERROR: code indent should never use tabs
#13330: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13292:
+^I^I      switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13330: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13292:
+		      switch (Field_t_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#13331: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13293:
+^I^I^I{$

ERROR: code indent should never use tabs
#13332: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13294:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#13333: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13295:
+^I^I^I  return OPCODE_ISYNC;$

ERROR: code indent should never use tabs
#13334: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13296:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#13335: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13297:
+^I^I^I  return OPCODE_RSYNC;$

ERROR: code indent should never use tabs
#13336: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13298:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#13337: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13299:
+^I^I^I  return OPCODE_ESYNC;$

ERROR: code indent should never use tabs
#13338: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13300:
+^I^I^Icase 3:$

ERROR: code indent should never use tabs
#13339: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13301:
+^I^I^I  return OPCODE_DSYNC;$

ERROR: code indent should never use tabs
#13340: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13302:
+^I^I^Icase 8:$

ERROR: code indent should never use tabs
#13341: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13303:
+^I^I^I  return OPCODE_EXCW;$

ERROR: code indent should never use tabs
#13342: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13304:
+^I^I^Icase 12:$

ERROR: code indent should never use tabs
#13343: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13305:
+^I^I^I  return OPCODE_MEMW;$

ERROR: code indent should never use tabs
#13344: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13306:
+^I^I^Icase 13:$

ERROR: code indent should never use tabs
#13345: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13307:
+^I^I^I  return OPCODE_EXTW;$

ERROR: code indent should never use tabs
#13346: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13308:
+^I^I^Icase 15:$

ERROR: code indent should never use tabs
#13347: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13309:
+^I^I^I  return OPCODE_NOP;$

ERROR: code indent should never use tabs
#13348: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13310:
+^I^I^I}$

ERROR: code indent should never use tabs
#13349: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13311:
+^I^I    }$

ERROR: code indent should never use tabs
#13350: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13312:
+^I^I  break;$

ERROR: code indent should never use tabs
#13351: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13313:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13352: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13314:
+^I^I  switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13352: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13314:
+		  switch (Field_t_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#13353: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13315:
+^I^I    {$

ERROR: code indent should never use tabs
#13354: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13316:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#13355: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13317:
+^I^I      switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13355: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13317:
+		      switch (Field_s_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#13356: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13318:
+^I^I^I{$

ERROR: code indent should never use tabs
#13357: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13319:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#13358: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13320:
+^I^I^I  return OPCODE_RFE;$

ERROR: code indent should never use tabs
#13359: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13321:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#13360: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13322:
+^I^I^I  return OPCODE_RFDE;$

ERROR: code indent should never use tabs
#13361: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13323:
+^I^I^Icase 4:$

ERROR: code indent should never use tabs
#13362: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13324:
+^I^I^I  return OPCODE_RFWO;$

ERROR: code indent should never use tabs
#13363: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13325:
+^I^I^Icase 5:$

ERROR: code indent should never use tabs
#13364: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13326:
+^I^I^I  return OPCODE_RFWU;$

ERROR: code indent should never use tabs
#13365: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13327:
+^I^I^I}$

ERROR: code indent should never use tabs
#13366: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13328:
+^I^I      break;$

ERROR: code indent should never use tabs
#13367: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13329:
+^I^I    case 1:$

ERROR: code indent should never use tabs
#13368: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13330:
+^I^I      return OPCODE_RFI;$

ERROR: code indent should never use tabs
#13369: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13331:
+^I^I    }$

ERROR: code indent should never use tabs
#13370: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13332:
+^I^I  break;$

ERROR: code indent should never use tabs
#13371: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13333:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#13372: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13334:
+^I^I  return OPCODE_BREAK;$

ERROR: code indent should never use tabs
#13373: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13335:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#13374: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13336:
+^I^I  switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13374: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13336:
+		  switch (Field_s_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#13375: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13337:
+^I^I    {$

ERROR: code indent should never use tabs
#13376: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13338:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#13377: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13339:
+^I^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13377: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13339:
+		      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13378: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13340:
+^I^I^Ireturn OPCODE_SYSCALL;$

ERROR: code indent should never use tabs
#13379: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13341:
+^I^I      break;$

ERROR: code indent should never use tabs
#13380: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13342:
+^I^I    case 1:$

ERROR: code indent should never use tabs
#13381: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13343:
+^I^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13381: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13343:
+		      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13382: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13344:
+^I^I^Ireturn OPCODE_SIMCALL;$

ERROR: code indent should never use tabs
#13383: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13345:
+^I^I      break;$

ERROR: code indent should never use tabs
#13384: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13346:
+^I^I    }$

ERROR: code indent should never use tabs
#13385: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13347:
+^I^I  break;$

ERROR: code indent should never use tabs
#13386: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13348:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#13387: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13349:
+^I^I  return OPCODE_RSIL;$

ERROR: code indent should never use tabs
#13388: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13350:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#13389: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13351:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13389: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13351:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13390: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13352:
+^I^I    return OPCODE_WAITI;$

ERROR: code indent should never use tabs
#13391: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13353:
+^I^I  break;$

ERROR: code indent should never use tabs
#13392: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13354:
+^I^I}$

ERROR: code indent should never use tabs
#13393: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13355:
+^I      break;$

ERROR: code indent should never use tabs
#13394: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13356:
+^I    case 1:$

ERROR: code indent should never use tabs
#13395: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13357:
+^I      return OPCODE_AND;$

ERROR: code indent should never use tabs
#13396: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13358:
+^I    case 2:$

ERROR: code indent should never use tabs
#13397: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13359:
+^I      return OPCODE_OR;$

ERROR: code indent should never use tabs
#13398: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13360:
+^I    case 3:$

ERROR: code indent should never use tabs
#13399: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13361:
+^I      return OPCODE_XOR;$

ERROR: code indent should never use tabs
#13400: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13362:
+^I    case 4:$

ERROR: code indent should never use tabs
#13401: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13363:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13401: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13363:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13402: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13364:
+^I^I{$

ERROR: code indent should never use tabs
#13403: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13365:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13404: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13366:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13404: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13366:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13405: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13367:
+^I^I    return OPCODE_SSR;$

ERROR: code indent should never use tabs
#13406: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13368:
+^I^I  break;$

ERROR: code indent should never use tabs
#13407: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13369:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13408: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13370:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13408: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13370:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13409: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13371:
+^I^I    return OPCODE_SSL;$

ERROR: code indent should never use tabs
#13410: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13372:
+^I^I  break;$

ERROR: code indent should never use tabs
#13411: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13373:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#13412: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13374:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13412: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13374:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13413: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13375:
+^I^I    return OPCODE_SSA8L;$

ERROR: code indent should never use tabs
#13414: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13376:
+^I^I  break;$

ERROR: code indent should never use tabs
#13415: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13377:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13416: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13378:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13416: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13378:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13417: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13379:
+^I^I    return OPCODE_SSA8B;$

ERROR: code indent should never use tabs
#13418: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13380:
+^I^I  break;$

ERROR: code indent should never use tabs
#13419: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13381:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#13420: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13382:
+^I^I  if (Field_thi3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13420: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13382:
+		  if (Field_thi3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13421: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13383:
+^I^I    return OPCODE_SSAI;$

ERROR: code indent should never use tabs
#13422: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13384:
+^I^I  break;$

ERROR: code indent should never use tabs
#13423: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13385:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#13424: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13386:
+^I^I  return OPCODE_RER;$

ERROR: code indent should never use tabs
#13425: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13387:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#13426: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13388:
+^I^I  return OPCODE_WER;$

ERROR: code indent should never use tabs
#13427: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13389:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#13428: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13390:
+^I^I  if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13428: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13390:
+		  if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13429: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13391:
+^I^I    return OPCODE_ROTW;$

ERROR: code indent should never use tabs
#13430: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13392:
+^I^I  break;$

ERROR: code indent should never use tabs
#13431: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13393:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#13432: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13394:
+^I^I  return OPCODE_NSA;$

ERROR: code indent should never use tabs
#13433: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13395:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#13434: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13396:
+^I^I  return OPCODE_NSAU;$

ERROR: code indent should never use tabs
#13435: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13397:
+^I^I}$

ERROR: code indent should never use tabs
#13436: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13398:
+^I      break;$

ERROR: code indent should never use tabs
#13437: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13399:
+^I    case 5:$

ERROR: code indent should never use tabs
#13438: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13400:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13438: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13400:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13439: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13401:
+^I^I{$

ERROR: code indent should never use tabs
#13440: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13402:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13441: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13403:
+^I^I  return OPCODE_HWWITLBA;$

ERROR: code indent should never use tabs
#13442: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13404:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13443: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13405:
+^I^I  return OPCODE_RITLB0;$

ERROR: code indent should never use tabs
#13444: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13406:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#13445: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13407:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13445: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13407:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13446: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13408:
+^I^I    return OPCODE_IITLB;$

ERROR: code indent should never use tabs
#13447: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13409:
+^I^I  break;$

ERROR: code indent should never use tabs
#13448: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13410:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#13449: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13411:
+^I^I  return OPCODE_PITLB;$

ERROR: code indent should never use tabs
#13450: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13412:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#13451: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13413:
+^I^I  return OPCODE_WITLB;$

ERROR: code indent should never use tabs
#13452: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13414:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#13453: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13415:
+^I^I  return OPCODE_RITLB1;$

ERROR: code indent should never use tabs
#13454: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13416:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#13455: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13417:
+^I^I  return OPCODE_HWWDTLBA;$

ERROR: code indent should never use tabs
#13456: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13418:
+^I^Icase 11:$

ERROR: code indent should never use tabs
#13457: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13419:
+^I^I  return OPCODE_RDTLB0;$

ERROR: code indent should never use tabs
#13458: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13420:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#13459: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13421:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13459: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13421:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13460: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13422:
+^I^I    return OPCODE_IDTLB;$

ERROR: code indent should never use tabs
#13461: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13423:
+^I^I  break;$

ERROR: code indent should never use tabs
#13462: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13424:
+^I^Icase 13:$

ERROR: code indent should never use tabs
#13463: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13425:
+^I^I  return OPCODE_PDTLB;$

ERROR: code indent should never use tabs
#13464: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13426:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#13465: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13427:
+^I^I  return OPCODE_WDTLB;$

ERROR: code indent should never use tabs
#13466: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13428:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#13467: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13429:
+^I^I  return OPCODE_RDTLB1;$

ERROR: code indent should never use tabs
#13468: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13430:
+^I^I}$

ERROR: code indent should never use tabs
#13469: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13431:
+^I      break;$

ERROR: code indent should never use tabs
#13470: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13432:
+^I    case 6:$

ERROR: code indent should never use tabs
#13471: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13433:
+^I      switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13471: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13433:
+	      switch (Field_s_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13472: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13434:
+^I^I{$

ERROR: code indent should never use tabs
#13473: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13435:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13474: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13436:
+^I^I  return OPCODE_NEG;$

ERROR: code indent should never use tabs
#13475: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13437:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13476: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13438:
+^I^I  return OPCODE_ABS;$

ERROR: code indent should never use tabs
#13477: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13439:
+^I^I}$

ERROR: code indent should never use tabs
#13478: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13440:
+^I      break;$

ERROR: code indent should never use tabs
#13479: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13441:
+^I    case 8:$

ERROR: code indent should never use tabs
#13480: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13442:
+^I      return OPCODE_ADD;$

ERROR: code indent should never use tabs
#13481: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13443:
+^I    case 9:$

ERROR: code indent should never use tabs
#13482: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13444:
+^I      return OPCODE_ADDX2;$

ERROR: code indent should never use tabs
#13483: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13445:
+^I    case 10:$

ERROR: code indent should never use tabs
#13484: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13446:
+^I      return OPCODE_ADDX4;$

ERROR: code indent should never use tabs
#13485: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13447:
+^I    case 11:$

ERROR: code indent should never use tabs
#13486: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13448:
+^I      return OPCODE_ADDX8;$

ERROR: code indent should never use tabs
#13487: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13449:
+^I    case 12:$

ERROR: code indent should never use tabs
#13488: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13450:
+^I      return OPCODE_SUB;$

ERROR: code indent should never use tabs
#13489: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13451:
+^I    case 13:$

ERROR: code indent should never use tabs
#13490: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13452:
+^I      return OPCODE_SUBX2;$

ERROR: code indent should never use tabs
#13491: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13453:
+^I    case 14:$

ERROR: code indent should never use tabs
#13492: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13454:
+^I      return OPCODE_SUBX4;$

ERROR: code indent should never use tabs
#13493: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13455:
+^I    case 15:$

ERROR: code indent should never use tabs
#13494: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13456:
+^I      return OPCODE_SUBX8;$

ERROR: code indent should never use tabs
#13495: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13457:
+^I    }$

ERROR: code indent should never use tabs
#13496: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13458:
+^I  break;$

ERROR: code indent should never use tabs
#13497: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13459:
+^Icase 1:$

ERROR: code indent should never use tabs
#13498: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13460:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13498: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13460:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13499: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13461:
+^I    {$

ERROR: code indent should never use tabs
#13500: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13462:
+^I    case 0:$

ERROR: code indent should never use tabs
#13501: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13463:
+^I    case 1:$

ERROR: code indent should never use tabs
#13502: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13464:
+^I      return OPCODE_SLLI;$

ERROR: code indent should never use tabs
#13503: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13465:
+^I    case 2:$

ERROR: code indent should never use tabs
#13504: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13466:
+^I    case 3:$

ERROR: code indent should never use tabs
#13505: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13467:
+^I      return OPCODE_SRAI;$

ERROR: code indent should never use tabs
#13506: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13468:
+^I    case 4:$

ERROR: code indent should never use tabs
#13507: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13469:
+^I      return OPCODE_SRLI;$

ERROR: code indent should never use tabs
#13508: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13470:
+^I    case 6:$

ERROR: code indent should never use tabs
#13509: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13471:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13509: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13471:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13510: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13472:
+^I^I{$

ERROR: code indent should never use tabs
#13511: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13473:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13512: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13474:
+^I^I  return OPCODE_XSR_LBEG;$

ERROR: code indent should never use tabs
#13513: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13475:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13514: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13476:
+^I^I  return OPCODE_XSR_LEND;$

ERROR: code indent should never use tabs
#13515: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13477:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#13516: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13478:
+^I^I  return OPCODE_XSR_LCOUNT;$

ERROR: code indent should never use tabs
#13517: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13479:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13518: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13480:
+^I^I  return OPCODE_XSR_SAR;$

ERROR: code indent should never use tabs
#13519: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13481:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#13520: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13482:
+^I^I  return OPCODE_XSR_LITBASE;$

ERROR: code indent should never use tabs
#13521: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13483:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#13522: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13484:
+^I^I  return OPCODE_XSR_SCOMPARE1;$

ERROR: code indent should never use tabs
#13523: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13485:
+^I^Icase 16:$

ERROR: code indent should never use tabs
#13524: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13486:
+^I^I  return OPCODE_XSR_ACCLO;$

ERROR: code indent should never use tabs
#13525: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13487:
+^I^Icase 17:$

ERROR: code indent should never use tabs
#13526: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13488:
+^I^I  return OPCODE_XSR_ACCHI;$

ERROR: code indent should never use tabs
#13527: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13489:
+^I^Icase 32:$

ERROR: code indent should never use tabs
#13528: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13490:
+^I^I  return OPCODE_XSR_M0;$

ERROR: code indent should never use tabs
#13529: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13491:
+^I^Icase 33:$

ERROR: code indent should never use tabs
#13530: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13492:
+^I^I  return OPCODE_XSR_M1;$

ERROR: code indent should never use tabs
#13531: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13493:
+^I^Icase 34:$

ERROR: code indent should never use tabs
#13532: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13494:
+^I^I  return OPCODE_XSR_M2;$

ERROR: code indent should never use tabs
#13533: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13495:
+^I^Icase 35:$

ERROR: code indent should never use tabs
#13534: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13496:
+^I^I  return OPCODE_XSR_M3;$

ERROR: code indent should never use tabs
#13535: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13497:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#13536: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13498:
+^I^I  return OPCODE_XSR_WINDOWBASE;$

ERROR: code indent should never use tabs
#13537: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13499:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#13538: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13500:
+^I^I  return OPCODE_XSR_WINDOWSTART;$

ERROR: code indent should never use tabs
#13539: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13501:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#13540: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13502:
+^I^I  return OPCODE_XSR_PTEVADDR;$

ERROR: code indent should never use tabs
#13541: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13503:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#13542: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13504:
+^I^I  return OPCODE_XSR_RASID;$

ERROR: code indent should never use tabs
#13543: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13505:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#13544: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13506:
+^I^I  return OPCODE_XSR_ITLBCFG;$

ERROR: code indent should never use tabs
#13545: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13507:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#13546: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13508:
+^I^I  return OPCODE_XSR_DTLBCFG;$

ERROR: code indent should never use tabs
#13547: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13509:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#13548: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13510:
+^I^I  return OPCODE_XSR_IBREAKENABLE;$

ERROR: code indent should never use tabs
#13549: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13511:
+^I^Icase 99:$

ERROR: code indent should never use tabs
#13550: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13512:
+^I^I  return OPCODE_XSR_ATOMCTL;$

ERROR: code indent should never use tabs
#13551: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13513:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#13552: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13514:
+^I^I  return OPCODE_XSR_DDR;$

ERROR: code indent should never use tabs
#13553: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13515:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#13554: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13516:
+^I^I  return OPCODE_XSR_IBREAKA0;$

ERROR: code indent should never use tabs
#13555: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13517:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#13556: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13518:
+^I^I  return OPCODE_XSR_IBREAKA1;$

ERROR: code indent should never use tabs
#13557: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13519:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#13558: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13520:
+^I^I  return OPCODE_XSR_DBREAKA0;$

ERROR: code indent should never use tabs
#13559: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13521:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#13560: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13522:
+^I^I  return OPCODE_XSR_DBREAKA1;$

ERROR: code indent should never use tabs
#13561: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13523:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#13562: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13524:
+^I^I  return OPCODE_XSR_DBREAKC0;$

ERROR: code indent should never use tabs
#13563: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13525:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#13564: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13526:
+^I^I  return OPCODE_XSR_DBREAKC1;$

ERROR: code indent should never use tabs
#13565: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13527:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#13566: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13528:
+^I^I  return OPCODE_XSR_EPC1;$

ERROR: code indent should never use tabs
#13567: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13529:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#13568: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13530:
+^I^I  return OPCODE_XSR_EPC2;$

ERROR: code indent should never use tabs
#13569: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13531:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#13570: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13532:
+^I^I  return OPCODE_XSR_EPC3;$

ERROR: code indent should never use tabs
#13571: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13533:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#13572: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13534:
+^I^I  return OPCODE_XSR_EPC4;$

ERROR: code indent should never use tabs
#13573: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13535:
+^I^Icase 181:$

ERROR: code indent should never use tabs
#13574: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13536:
+^I^I  return OPCODE_XSR_EPC5;$

ERROR: code indent should never use tabs
#13575: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13537:
+^I^Icase 182:$

ERROR: code indent should never use tabs
#13576: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13538:
+^I^I  return OPCODE_XSR_EPC6;$

ERROR: code indent should never use tabs
#13577: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13539:
+^I^Icase 183:$

ERROR: code indent should never use tabs
#13578: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13540:
+^I^I  return OPCODE_XSR_EPC7;$

ERROR: code indent should never use tabs
#13579: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13541:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#13580: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13542:
+^I^I  return OPCODE_XSR_DEPC;$

ERROR: code indent should never use tabs
#13581: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13543:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#13582: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13544:
+^I^I  return OPCODE_XSR_EPS2;$

ERROR: code indent should never use tabs
#13583: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13545:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#13584: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13546:
+^I^I  return OPCODE_XSR_EPS3;$

ERROR: code indent should never use tabs
#13585: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13547:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#13586: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13548:
+^I^I  return OPCODE_XSR_EPS4;$

ERROR: code indent should never use tabs
#13587: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13549:
+^I^Icase 197:$

ERROR: code indent should never use tabs
#13588: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13550:
+^I^I  return OPCODE_XSR_EPS5;$

ERROR: code indent should never use tabs
#13589: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13551:
+^I^Icase 198:$

ERROR: code indent should never use tabs
#13590: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13552:
+^I^I  return OPCODE_XSR_EPS6;$

ERROR: code indent should never use tabs
#13591: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13553:
+^I^Icase 199:$

ERROR: code indent should never use tabs
#13592: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13554:
+^I^I  return OPCODE_XSR_EPS7;$

ERROR: code indent should never use tabs
#13593: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13555:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#13594: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13556:
+^I^I  return OPCODE_XSR_EXCSAVE1;$

ERROR: code indent should never use tabs
#13595: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13557:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#13596: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13558:
+^I^I  return OPCODE_XSR_EXCSAVE2;$

ERROR: code indent should never use tabs
#13597: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13559:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#13598: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13560:
+^I^I  return OPCODE_XSR_EXCSAVE3;$

ERROR: code indent should never use tabs
#13599: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13561:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#13600: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13562:
+^I^I  return OPCODE_XSR_EXCSAVE4;$

ERROR: code indent should never use tabs
#13601: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13563:
+^I^Icase 213:$

ERROR: code indent should never use tabs
#13602: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13564:
+^I^I  return OPCODE_XSR_EXCSAVE5;$

ERROR: code indent should never use tabs
#13603: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13565:
+^I^Icase 214:$

ERROR: code indent should never use tabs
#13604: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13566:
+^I^I  return OPCODE_XSR_EXCSAVE6;$

ERROR: code indent should never use tabs
#13605: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13567:
+^I^Icase 215:$

ERROR: code indent should never use tabs
#13606: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13568:
+^I^I  return OPCODE_XSR_EXCSAVE7;$

ERROR: code indent should never use tabs
#13607: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13569:
+^I^Icase 224:$

ERROR: code indent should never use tabs
#13608: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13570:
+^I^I  return OPCODE_XSR_CPENABLE;$

ERROR: code indent should never use tabs
#13609: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13571:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#13610: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13572:
+^I^I  return OPCODE_XSR_INTENABLE;$

ERROR: code indent should never use tabs
#13611: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13573:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#13612: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13574:
+^I^I  return OPCODE_XSR_PS;$

ERROR: code indent should never use tabs
#13613: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13575:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#13614: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13576:
+^I^I  return OPCODE_XSR_VECBASE;$

ERROR: code indent should never use tabs
#13615: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13577:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#13616: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13578:
+^I^I  return OPCODE_XSR_EXCCAUSE;$

ERROR: code indent should never use tabs
#13617: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13579:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#13618: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13580:
+^I^I  return OPCODE_XSR_DEBUGCAUSE;$

ERROR: code indent should never use tabs
#13619: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13581:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#13620: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13582:
+^I^I  return OPCODE_XSR_CCOUNT;$

ERROR: code indent should never use tabs
#13621: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13583:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#13622: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13584:
+^I^I  return OPCODE_XSR_ICOUNT;$

ERROR: code indent should never use tabs
#13623: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13585:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#13624: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13586:
+^I^I  return OPCODE_XSR_ICOUNTLEVEL;$

ERROR: code indent should never use tabs
#13625: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13587:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#13626: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13588:
+^I^I  return OPCODE_XSR_EXCVADDR;$

ERROR: code indent should never use tabs
#13627: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13589:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#13628: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13590:
+^I^I  return OPCODE_XSR_CCOMPARE0;$

ERROR: code indent should never use tabs
#13629: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13591:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#13630: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13592:
+^I^I  return OPCODE_XSR_CCOMPARE1;$

ERROR: code indent should never use tabs
#13631: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13593:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#13632: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13594:
+^I^I  return OPCODE_XSR_CCOMPARE2;$

ERROR: code indent should never use tabs
#13633: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13595:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#13634: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13596:
+^I^I  return OPCODE_XSR_MISC0;$

ERROR: code indent should never use tabs
#13635: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13597:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#13636: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13598:
+^I^I  return OPCODE_XSR_MISC1;$

ERROR: code indent should never use tabs
#13637: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13599:
+^I^I}$

ERROR: code indent should never use tabs
#13638: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13600:
+^I      break;$

ERROR: code indent should never use tabs
#13639: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13601:
+^I    case 8:$

ERROR: code indent should never use tabs
#13640: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13602:
+^I      return OPCODE_SRC;$

ERROR: code indent should never use tabs
#13641: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13603:
+^I    case 9:$

ERROR: code indent should never use tabs
#13642: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13604:
+^I      if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13642: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13604:
+	      if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13643: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13605:
+^I^Ireturn OPCODE_SRL;$

ERROR: code indent should never use tabs
#13644: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13606:
+^I      break;$

ERROR: code indent should never use tabs
#13645: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13607:
+^I    case 10:$

ERROR: code indent should never use tabs
#13646: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13608:
+^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13646: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13608:
+	      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13647: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13609:
+^I^Ireturn OPCODE_SLL;$

ERROR: code indent should never use tabs
#13648: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13610:
+^I      break;$

ERROR: code indent should never use tabs
#13649: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13611:
+^I    case 11:$

ERROR: code indent should never use tabs
#13650: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13612:
+^I      if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13650: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13612:
+	      if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13651: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13613:
+^I^Ireturn OPCODE_SRA;$

ERROR: code indent should never use tabs
#13652: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13614:
+^I      break;$

ERROR: code indent should never use tabs
#13653: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13615:
+^I    case 12:$

ERROR: code indent should never use tabs
#13654: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13616:
+^I      return OPCODE_MUL16U;$

ERROR: code indent should never use tabs
#13655: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13617:
+^I    case 13:$

ERROR: code indent should never use tabs
#13656: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13618:
+^I      return OPCODE_MUL16S;$

ERROR: code indent should never use tabs
#13657: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13619:
+^I    case 15:$

ERROR: code indent should never use tabs
#13658: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13620:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13658: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13620:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13659: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13621:
+^I^I{$

ERROR: code indent should never use tabs
#13660: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13622:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13661: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13623:
+^I^I  return OPCODE_LICT;$

ERROR: code indent should never use tabs
#13662: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13624:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13663: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13625:
+^I^I  return OPCODE_SICT;$

ERROR: code indent should never use tabs
#13664: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13626:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#13665: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13627:
+^I^I  return OPCODE_LICW;$

ERROR: code indent should never use tabs
#13666: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13628:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13667: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13629:
+^I^I  return OPCODE_SICW;$

ERROR: code indent should never use tabs
#13668: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13630:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#13669: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13631:
+^I^I  return OPCODE_LDCT;$

ERROR: code indent should never use tabs
#13670: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13632:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#13671: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13633:
+^I^I  return OPCODE_SDCT;$

ERROR: code indent should never use tabs
#13672: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13634:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#13673: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13635:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#13673: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13635:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#13674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13636:
+^I^I    return OPCODE_RFDO;$

ERROR: code indent should never use tabs
#13675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13637:
+^I^I  if (Field_t_Slot_inst_get (insn) == 1)$

ERROR: braces {} are necessary for all arms of this statement
#13675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13637:
+		  if (Field_t_Slot_inst_get (insn) == 1)
[...]

ERROR: code indent should never use tabs
#13676: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13638:
+^I^I    return OPCODE_RFDD;$

ERROR: code indent should never use tabs
#13677: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13639:
+^I^I  break;$

ERROR: code indent should never use tabs
#13678: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13640:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#13679: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13641:
+^I^I  return OPCODE_LDPTE;$

ERROR: code indent should never use tabs
#13680: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13642:
+^I^I}$

ERROR: code indent should never use tabs
#13681: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13643:
+^I      break;$

ERROR: code indent should never use tabs
#13682: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13644:
+^I    }$

ERROR: code indent should never use tabs
#13683: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13645:
+^I  break;$

ERROR: code indent should never use tabs
#13684: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13646:
+^Icase 2:$

ERROR: code indent should never use tabs
#13685: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13647:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13685: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13647:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13686: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13648:
+^I    {$

ERROR: code indent should never use tabs
#13687: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13649:
+^I    case 8:$

ERROR: code indent should never use tabs
#13688: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13650:
+^I      return OPCODE_MULL;$

ERROR: code indent should never use tabs
#13689: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13651:
+^I    case 12:$

ERROR: code indent should never use tabs
#13690: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13652:
+^I      return OPCODE_QUOU;$

ERROR: code indent should never use tabs
#13691: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13653:
+^I    case 13:$

ERROR: code indent should never use tabs
#13692: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13654:
+^I      return OPCODE_QUOS;$

ERROR: code indent should never use tabs
#13693: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13655:
+^I    case 14:$

ERROR: code indent should never use tabs
#13694: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13656:
+^I      return OPCODE_REMU;$

ERROR: code indent should never use tabs
#13695: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13657:
+^I    case 15:$

ERROR: code indent should never use tabs
#13696: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13658:
+^I      return OPCODE_REMS;$

ERROR: code indent should never use tabs
#13697: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13659:
+^I    }$

ERROR: code indent should never use tabs
#13698: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13660:
+^I  break;$

ERROR: code indent should never use tabs
#13699: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13661:
+^Icase 3:$

ERROR: code indent should never use tabs
#13700: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13662:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13700: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13662:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#13701: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13663:
+^I    {$

ERROR: code indent should never use tabs
#13702: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13664:
+^I    case 0:$

ERROR: code indent should never use tabs
#13703: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13665:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13703: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13665:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13704: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13666:
+^I^I{$

ERROR: code indent should never use tabs
#13705: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13667:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13706: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13668:
+^I^I  return OPCODE_RSR_LBEG;$

ERROR: code indent should never use tabs
#13707: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13669:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13708: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13670:
+^I^I  return OPCODE_RSR_LEND;$

ERROR: code indent should never use tabs
#13709: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13671:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#13710: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13672:
+^I^I  return OPCODE_RSR_LCOUNT;$

ERROR: code indent should never use tabs
#13711: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13673:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13712: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13674:
+^I^I  return OPCODE_RSR_SAR;$

ERROR: code indent should never use tabs
#13713: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13675:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#13714: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13676:
+^I^I  return OPCODE_RSR_LITBASE;$

ERROR: code indent should never use tabs
#13715: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13677:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#13716: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13678:
+^I^I  return OPCODE_RSR_SCOMPARE1;$

ERROR: code indent should never use tabs
#13717: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13679:
+^I^Icase 16:$

ERROR: code indent should never use tabs
#13718: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13680:
+^I^I  return OPCODE_RSR_ACCLO;$

ERROR: code indent should never use tabs
#13719: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13681:
+^I^Icase 17:$

ERROR: code indent should never use tabs
#13720: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13682:
+^I^I  return OPCODE_RSR_ACCHI;$

ERROR: code indent should never use tabs
#13721: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13683:
+^I^Icase 32:$

ERROR: code indent should never use tabs
#13722: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13684:
+^I^I  return OPCODE_RSR_M0;$

ERROR: code indent should never use tabs
#13723: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13685:
+^I^Icase 33:$

ERROR: code indent should never use tabs
#13724: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13686:
+^I^I  return OPCODE_RSR_M1;$

ERROR: code indent should never use tabs
#13725: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13687:
+^I^Icase 34:$

ERROR: code indent should never use tabs
#13726: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13688:
+^I^I  return OPCODE_RSR_M2;$

ERROR: code indent should never use tabs
#13727: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13689:
+^I^Icase 35:$

ERROR: code indent should never use tabs
#13728: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13690:
+^I^I  return OPCODE_RSR_M3;$

ERROR: code indent should never use tabs
#13729: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13691:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#13730: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13692:
+^I^I  return OPCODE_RSR_WINDOWBASE;$

ERROR: code indent should never use tabs
#13731: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13693:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#13732: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13694:
+^I^I  return OPCODE_RSR_WINDOWSTART;$

ERROR: code indent should never use tabs
#13733: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13695:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#13734: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13696:
+^I^I  return OPCODE_RSR_PTEVADDR;$

ERROR: code indent should never use tabs
#13735: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13697:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#13736: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13698:
+^I^I  return OPCODE_RSR_RASID;$

ERROR: code indent should never use tabs
#13737: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13699:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#13738: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13700:
+^I^I  return OPCODE_RSR_ITLBCFG;$

ERROR: code indent should never use tabs
#13739: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13701:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#13740: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13702:
+^I^I  return OPCODE_RSR_DTLBCFG;$

ERROR: code indent should never use tabs
#13741: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13703:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#13742: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13704:
+^I^I  return OPCODE_RSR_IBREAKENABLE;$

ERROR: code indent should never use tabs
#13743: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13705:
+^I^Icase 99:$

ERROR: code indent should never use tabs
#13744: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13706:
+^I^I  return OPCODE_RSR_ATOMCTL;$

ERROR: code indent should never use tabs
#13745: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13707:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#13746: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13708:
+^I^I  return OPCODE_RSR_DDR;$

ERROR: code indent should never use tabs
#13747: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13709:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#13748: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13710:
+^I^I  return OPCODE_RSR_IBREAKA0;$

ERROR: code indent should never use tabs
#13749: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13711:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#13750: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13712:
+^I^I  return OPCODE_RSR_IBREAKA1;$

ERROR: code indent should never use tabs
#13751: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13713:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#13752: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13714:
+^I^I  return OPCODE_RSR_DBREAKA0;$

ERROR: code indent should never use tabs
#13753: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13715:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#13754: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13716:
+^I^I  return OPCODE_RSR_DBREAKA1;$

ERROR: code indent should never use tabs
#13755: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13717:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#13756: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13718:
+^I^I  return OPCODE_RSR_DBREAKC0;$

ERROR: code indent should never use tabs
#13757: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13719:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#13758: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13720:
+^I^I  return OPCODE_RSR_DBREAKC1;$

ERROR: code indent should never use tabs
#13759: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13721:
+^I^Icase 176:$

ERROR: code indent should never use tabs
#13760: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13722:
+^I^I  return OPCODE_RSR_176;$

ERROR: code indent should never use tabs
#13761: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13723:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#13762: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13724:
+^I^I  return OPCODE_RSR_EPC1;$

ERROR: code indent should never use tabs
#13763: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13725:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#13764: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13726:
+^I^I  return OPCODE_RSR_EPC2;$

ERROR: code indent should never use tabs
#13765: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13727:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#13766: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13728:
+^I^I  return OPCODE_RSR_EPC3;$

ERROR: code indent should never use tabs
#13767: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13729:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#13768: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13730:
+^I^I  return OPCODE_RSR_EPC4;$

ERROR: code indent should never use tabs
#13769: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13731:
+^I^Icase 181:$

ERROR: code indent should never use tabs
#13770: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13732:
+^I^I  return OPCODE_RSR_EPC5;$

ERROR: code indent should never use tabs
#13771: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13733:
+^I^Icase 182:$

ERROR: code indent should never use tabs
#13772: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13734:
+^I^I  return OPCODE_RSR_EPC6;$

ERROR: code indent should never use tabs
#13773: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13735:
+^I^Icase 183:$

ERROR: code indent should never use tabs
#13774: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13736:
+^I^I  return OPCODE_RSR_EPC7;$

ERROR: code indent should never use tabs
#13775: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13737:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#13776: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13738:
+^I^I  return OPCODE_RSR_DEPC;$

ERROR: code indent should never use tabs
#13777: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13739:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#13778: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13740:
+^I^I  return OPCODE_RSR_EPS2;$

ERROR: code indent should never use tabs
#13779: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13741:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#13780: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13742:
+^I^I  return OPCODE_RSR_EPS3;$

ERROR: code indent should never use tabs
#13781: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13743:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#13782: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13744:
+^I^I  return OPCODE_RSR_EPS4;$

ERROR: code indent should never use tabs
#13783: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13745:
+^I^Icase 197:$

ERROR: code indent should never use tabs
#13784: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13746:
+^I^I  return OPCODE_RSR_EPS5;$

ERROR: code indent should never use tabs
#13785: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13747:
+^I^Icase 198:$

ERROR: code indent should never use tabs
#13786: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13748:
+^I^I  return OPCODE_RSR_EPS6;$

ERROR: code indent should never use tabs
#13787: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13749:
+^I^Icase 199:$

ERROR: code indent should never use tabs
#13788: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13750:
+^I^I  return OPCODE_RSR_EPS7;$

ERROR: code indent should never use tabs
#13789: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13751:
+^I^Icase 208:$

ERROR: code indent should never use tabs
#13790: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13752:
+^I^I  return OPCODE_RSR_208;$

ERROR: code indent should never use tabs
#13791: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13753:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#13792: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13754:
+^I^I  return OPCODE_RSR_EXCSAVE1;$

ERROR: code indent should never use tabs
#13793: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13755:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#13794: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13756:
+^I^I  return OPCODE_RSR_EXCSAVE2;$

ERROR: code indent should never use tabs
#13795: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13757:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#13796: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13758:
+^I^I  return OPCODE_RSR_EXCSAVE3;$

ERROR: code indent should never use tabs
#13797: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13759:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#13798: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13760:
+^I^I  return OPCODE_RSR_EXCSAVE4;$

ERROR: code indent should never use tabs
#13799: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13761:
+^I^Icase 213:$

ERROR: code indent should never use tabs
#13800: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13762:
+^I^I  return OPCODE_RSR_EXCSAVE5;$

ERROR: code indent should never use tabs
#13801: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13763:
+^I^Icase 214:$

ERROR: code indent should never use tabs
#13802: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13764:
+^I^I  return OPCODE_RSR_EXCSAVE6;$

ERROR: code indent should never use tabs
#13803: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13765:
+^I^Icase 215:$

ERROR: code indent should never use tabs
#13804: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13766:
+^I^I  return OPCODE_RSR_EXCSAVE7;$

ERROR: code indent should never use tabs
#13805: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13767:
+^I^Icase 224:$

ERROR: code indent should never use tabs
#13806: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13768:
+^I^I  return OPCODE_RSR_CPENABLE;$

ERROR: code indent should never use tabs
#13807: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13769:
+^I^Icase 226:$

ERROR: code indent should never use tabs
#13808: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13770:
+^I^I  return OPCODE_RSR_INTERRUPT;$

ERROR: code indent should never use tabs
#13809: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13771:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#13810: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13772:
+^I^I  return OPCODE_RSR_INTENABLE;$

ERROR: code indent should never use tabs
#13811: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13773:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#13812: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13774:
+^I^I  return OPCODE_RSR_PS;$

ERROR: code indent should never use tabs
#13813: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13775:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#13814: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13776:
+^I^I  return OPCODE_RSR_VECBASE;$

ERROR: code indent should never use tabs
#13815: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13777:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#13816: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13778:
+^I^I  return OPCODE_RSR_EXCCAUSE;$

ERROR: code indent should never use tabs
#13817: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13779:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#13818: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13780:
+^I^I  return OPCODE_RSR_DEBUGCAUSE;$

ERROR: code indent should never use tabs
#13819: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13781:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#13820: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13782:
+^I^I  return OPCODE_RSR_CCOUNT;$

ERROR: code indent should never use tabs
#13821: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13783:
+^I^Icase 235:$

ERROR: code indent should never use tabs
#13822: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13784:
+^I^I  return OPCODE_RSR_PRID;$

ERROR: code indent should never use tabs
#13823: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13785:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#13824: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13786:
+^I^I  return OPCODE_RSR_ICOUNT;$

ERROR: code indent should never use tabs
#13825: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13787:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#13826: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13788:
+^I^I  return OPCODE_RSR_ICOUNTLEVEL;$

ERROR: code indent should never use tabs
#13827: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13789:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#13828: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13790:
+^I^I  return OPCODE_RSR_EXCVADDR;$

ERROR: code indent should never use tabs
#13829: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13791:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#13830: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13792:
+^I^I  return OPCODE_RSR_CCOMPARE0;$

ERROR: code indent should never use tabs
#13831: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13793:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#13832: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13794:
+^I^I  return OPCODE_RSR_CCOMPARE1;$

ERROR: code indent should never use tabs
#13833: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13795:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#13834: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13796:
+^I^I  return OPCODE_RSR_CCOMPARE2;$

ERROR: code indent should never use tabs
#13835: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13797:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#13836: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13798:
+^I^I  return OPCODE_RSR_MISC0;$

ERROR: code indent should never use tabs
#13837: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13799:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#13838: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13800:
+^I^I  return OPCODE_RSR_MISC1;$

ERROR: code indent should never use tabs
#13839: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13801:
+^I^I}$

ERROR: code indent should never use tabs
#13840: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13802:
+^I      break;$

ERROR: code indent should never use tabs
#13841: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13803:
+^I    case 1:$

ERROR: code indent should never use tabs
#13842: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13804:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#13842: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13804:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#13843: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13805:
+^I^I{$

ERROR: code indent should never use tabs
#13844: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13806:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#13845: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13807:
+^I^I  return OPCODE_WSR_LBEG;$

ERROR: code indent should never use tabs
#13846: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13808:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#13847: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13809:
+^I^I  return OPCODE_WSR_LEND;$

ERROR: code indent should never use tabs
#13848: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13810:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#13849: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13811:
+^I^I  return OPCODE_WSR_LCOUNT;$

ERROR: code indent should never use tabs
#13850: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13812:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#13851: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13813:
+^I^I  return OPCODE_WSR_SAR;$

ERROR: code indent should never use tabs
#13852: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13814:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#13853: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13815:
+^I^I  return OPCODE_WSR_LITBASE;$

ERROR: code indent should never use tabs
#13854: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13816:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#13855: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13817:
+^I^I  return OPCODE_WSR_SCOMPARE1;$

ERROR: code indent should never use tabs
#13856: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13818:
+^I^Icase 16:$

ERROR: code indent should never use tabs
#13857: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13819:
+^I^I  return OPCODE_WSR_ACCLO;$

ERROR: code indent should never use tabs
#13858: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13820:
+^I^Icase 17:$

ERROR: code indent should never use tabs
#13859: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13821:
+^I^I  return OPCODE_WSR_ACCHI;$

ERROR: code indent should never use tabs
#13860: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13822:
+^I^Icase 32:$

ERROR: code indent should never use tabs
#13861: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13823:
+^I^I  return OPCODE_WSR_M0;$

ERROR: code indent should never use tabs
#13862: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13824:
+^I^Icase 33:$

ERROR: code indent should never use tabs
#13863: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13825:
+^I^I  return OPCODE_WSR_M1;$

ERROR: code indent should never use tabs
#13864: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13826:
+^I^Icase 34:$

ERROR: code indent should never use tabs
#13865: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13827:
+^I^I  return OPCODE_WSR_M2;$

ERROR: code indent should never use tabs
#13866: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13828:
+^I^Icase 35:$

ERROR: code indent should never use tabs
#13867: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13829:
+^I^I  return OPCODE_WSR_M3;$

ERROR: code indent should never use tabs
#13868: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13830:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#13869: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13831:
+^I^I  return OPCODE_WSR_WINDOWBASE;$

ERROR: code indent should never use tabs
#13870: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13832:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#13871: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13833:
+^I^I  return OPCODE_WSR_WINDOWSTART;$

ERROR: code indent should never use tabs
#13872: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13834:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#13873: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13835:
+^I^I  return OPCODE_WSR_PTEVADDR;$

ERROR: code indent should never use tabs
#13874: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13836:
+^I^Icase 89:$

ERROR: code indent should never use tabs
#13875: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13837:
+^I^I  return OPCODE_WSR_MMID;$

ERROR: code indent should never use tabs
#13876: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13838:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#13877: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13839:
+^I^I  return OPCODE_WSR_RASID;$

ERROR: code indent should never use tabs
#13878: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13840:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#13879: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13841:
+^I^I  return OPCODE_WSR_ITLBCFG;$

ERROR: code indent should never use tabs
#13880: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13842:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#13881: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13843:
+^I^I  return OPCODE_WSR_DTLBCFG;$

ERROR: code indent should never use tabs
#13882: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13844:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#13883: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13845:
+^I^I  return OPCODE_WSR_IBREAKENABLE;$

ERROR: code indent should never use tabs
#13884: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13846:
+^I^Icase 99:$

ERROR: code indent should never use tabs
#13885: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13847:
+^I^I  return OPCODE_WSR_ATOMCTL;$

ERROR: code indent should never use tabs
#13886: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13848:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#13887: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13849:
+^I^I  return OPCODE_WSR_DDR;$

ERROR: code indent should never use tabs
#13888: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13850:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#13889: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13851:
+^I^I  return OPCODE_WSR_IBREAKA0;$

ERROR: code indent should never use tabs
#13890: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13852:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#13891: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13853:
+^I^I  return OPCODE_WSR_IBREAKA1;$

ERROR: code indent should never use tabs
#13892: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13854:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#13893: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13855:
+^I^I  return OPCODE_WSR_DBREAKA0;$

ERROR: code indent should never use tabs
#13894: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13856:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#13895: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13857:
+^I^I  return OPCODE_WSR_DBREAKA1;$

ERROR: code indent should never use tabs
#13896: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13858:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#13897: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13859:
+^I^I  return OPCODE_WSR_DBREAKC0;$

ERROR: code indent should never use tabs
#13898: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13860:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#13899: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13861:
+^I^I  return OPCODE_WSR_DBREAKC1;$

ERROR: code indent should never use tabs
#13900: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13862:
+^I^Icase 176:$

ERROR: code indent should never use tabs
#13901: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13863:
+^I^I  return OPCODE_WSR_176;$

ERROR: code indent should never use tabs
#13902: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13864:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#13903: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13865:
+^I^I  return OPCODE_WSR_EPC1;$

ERROR: code indent should never use tabs
#13904: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13866:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#13905: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13867:
+^I^I  return OPCODE_WSR_EPC2;$

ERROR: code indent should never use tabs
#13906: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13868:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#13907: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13869:
+^I^I  return OPCODE_WSR_EPC3;$

ERROR: code indent should never use tabs
#13908: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13870:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#13909: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13871:
+^I^I  return OPCODE_WSR_EPC4;$

ERROR: code indent should never use tabs
#13910: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13872:
+^I^Icase 181:$

ERROR: code indent should never use tabs
#13911: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13873:
+^I^I  return OPCODE_WSR_EPC5;$

ERROR: code indent should never use tabs
#13912: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13874:
+^I^Icase 182:$

ERROR: code indent should never use tabs
#13913: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13875:
+^I^I  return OPCODE_WSR_EPC6;$

ERROR: code indent should never use tabs
#13914: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13876:
+^I^Icase 183:$

ERROR: code indent should never use tabs
#13915: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13877:
+^I^I  return OPCODE_WSR_EPC7;$

ERROR: code indent should never use tabs
#13916: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13878:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#13917: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13879:
+^I^I  return OPCODE_WSR_DEPC;$

ERROR: code indent should never use tabs
#13918: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13880:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#13919: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13881:
+^I^I  return OPCODE_WSR_EPS2;$

ERROR: code indent should never use tabs
#13920: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13882:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#13921: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13883:
+^I^I  return OPCODE_WSR_EPS3;$

ERROR: code indent should never use tabs
#13922: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13884:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#13923: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13885:
+^I^I  return OPCODE_WSR_EPS4;$

ERROR: code indent should never use tabs
#13924: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13886:
+^I^Icase 197:$

ERROR: code indent should never use tabs
#13925: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13887:
+^I^I  return OPCODE_WSR_EPS5;$

ERROR: code indent should never use tabs
#13926: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13888:
+^I^Icase 198:$

ERROR: code indent should never use tabs
#13927: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13889:
+^I^I  return OPCODE_WSR_EPS6;$

ERROR: code indent should never use tabs
#13928: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13890:
+^I^Icase 199:$

ERROR: code indent should never use tabs
#13929: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13891:
+^I^I  return OPCODE_WSR_EPS7;$

ERROR: code indent should never use tabs
#13930: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13892:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#13931: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13893:
+^I^I  return OPCODE_WSR_EXCSAVE1;$

ERROR: code indent should never use tabs
#13932: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13894:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#13933: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13895:
+^I^I  return OPCODE_WSR_EXCSAVE2;$

ERROR: code indent should never use tabs
#13934: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13896:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#13935: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13897:
+^I^I  return OPCODE_WSR_EXCSAVE3;$

ERROR: code indent should never use tabs
#13936: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13898:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#13937: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13899:
+^I^I  return OPCODE_WSR_EXCSAVE4;$

ERROR: code indent should never use tabs
#13938: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13900:
+^I^Icase 213:$

ERROR: code indent should never use tabs
#13939: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13901:
+^I^I  return OPCODE_WSR_EXCSAVE5;$

ERROR: code indent should never use tabs
#13940: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13902:
+^I^Icase 214:$

ERROR: code indent should never use tabs
#13941: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13903:
+^I^I  return OPCODE_WSR_EXCSAVE6;$

ERROR: code indent should never use tabs
#13942: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13904:
+^I^Icase 215:$

ERROR: code indent should never use tabs
#13943: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13905:
+^I^I  return OPCODE_WSR_EXCSAVE7;$

ERROR: code indent should never use tabs
#13944: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13906:
+^I^Icase 224:$

ERROR: code indent should never use tabs
#13945: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13907:
+^I^I  return OPCODE_WSR_CPENABLE;$

ERROR: code indent should never use tabs
#13946: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13908:
+^I^Icase 226:$

ERROR: code indent should never use tabs
#13947: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13909:
+^I^I  return OPCODE_WSR_INTSET;$

ERROR: code indent should never use tabs
#13948: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13910:
+^I^Icase 227:$

ERROR: code indent should never use tabs
#13949: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13911:
+^I^I  return OPCODE_WSR_INTCLEAR;$

ERROR: code indent should never use tabs
#13950: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13912:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#13951: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13913:
+^I^I  return OPCODE_WSR_INTENABLE;$

ERROR: code indent should never use tabs
#13952: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13914:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#13953: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13915:
+^I^I  return OPCODE_WSR_PS;$

ERROR: code indent should never use tabs
#13954: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13916:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#13955: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13917:
+^I^I  return OPCODE_WSR_VECBASE;$

ERROR: code indent should never use tabs
#13956: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13918:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#13957: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13919:
+^I^I  return OPCODE_WSR_EXCCAUSE;$

ERROR: code indent should never use tabs
#13958: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13920:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#13959: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13921:
+^I^I  return OPCODE_WSR_DEBUGCAUSE;$

ERROR: code indent should never use tabs
#13960: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13922:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#13961: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13923:
+^I^I  return OPCODE_WSR_CCOUNT;$

ERROR: code indent should never use tabs
#13962: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13924:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#13963: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13925:
+^I^I  return OPCODE_WSR_ICOUNT;$

ERROR: code indent should never use tabs
#13964: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13926:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#13965: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13927:
+^I^I  return OPCODE_WSR_ICOUNTLEVEL;$

ERROR: code indent should never use tabs
#13966: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13928:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#13967: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13929:
+^I^I  return OPCODE_WSR_EXCVADDR;$

ERROR: code indent should never use tabs
#13968: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13930:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#13969: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13931:
+^I^I  return OPCODE_WSR_CCOMPARE0;$

ERROR: code indent should never use tabs
#13970: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13932:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#13971: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13933:
+^I^I  return OPCODE_WSR_CCOMPARE1;$

ERROR: code indent should never use tabs
#13972: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13934:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#13973: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13935:
+^I^I  return OPCODE_WSR_CCOMPARE2;$

ERROR: code indent should never use tabs
#13974: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13936:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#13975: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13937:
+^I^I  return OPCODE_WSR_MISC0;$

ERROR: code indent should never use tabs
#13976: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13938:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#13977: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13939:
+^I^I  return OPCODE_WSR_MISC1;$

ERROR: code indent should never use tabs
#13978: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13940:
+^I^I}$

ERROR: code indent should never use tabs
#13979: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13941:
+^I      break;$

ERROR: code indent should never use tabs
#13980: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13942:
+^I    case 2:$

ERROR: code indent should never use tabs
#13981: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13943:
+^I      return OPCODE_SEXT;$

ERROR: code indent should never use tabs
#13982: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13944:
+^I    case 3:$

ERROR: code indent should never use tabs
#13983: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13945:
+^I      return OPCODE_CLAMPS;$

ERROR: code indent should never use tabs
#13984: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13946:
+^I    case 4:$

ERROR: code indent should never use tabs
#13985: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13947:
+^I      return OPCODE_MIN;$

ERROR: code indent should never use tabs
#13986: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13948:
+^I    case 5:$

ERROR: code indent should never use tabs
#13987: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13949:
+^I      return OPCODE_MAX;$

ERROR: code indent should never use tabs
#13988: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13950:
+^I    case 6:$

ERROR: code indent should never use tabs
#13989: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13951:
+^I      return OPCODE_MINU;$

ERROR: code indent should never use tabs
#13990: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13952:
+^I    case 7:$

ERROR: code indent should never use tabs
#13991: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13953:
+^I      return OPCODE_MAXU;$

ERROR: code indent should never use tabs
#13992: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13954:
+^I    case 8:$

ERROR: code indent should never use tabs
#13993: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13955:
+^I      return OPCODE_MOVEQZ;$

ERROR: code indent should never use tabs
#13994: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13956:
+^I    case 9:$

ERROR: code indent should never use tabs
#13995: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13957:
+^I      return OPCODE_MOVNEZ;$

ERROR: code indent should never use tabs
#13996: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13958:
+^I    case 10:$

ERROR: code indent should never use tabs
#13997: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13959:
+^I      return OPCODE_MOVLTZ;$

ERROR: code indent should never use tabs
#13998: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13960:
+^I    case 11:$

ERROR: code indent should never use tabs
#13999: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13961:
+^I      return OPCODE_MOVGEZ;$

ERROR: code indent should never use tabs
#14000: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13962:
+^I    case 14:$

ERROR: code indent should never use tabs
#14001: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13963:
+^I      switch (Field_st_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14001: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13963:
+	      switch (Field_st_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#14002: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13964:
+^I^I{$

ERROR: code indent should never use tabs
#14003: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13965:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#14004: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13966:
+^I^I  return OPCODE_RUR_EXPSTATE;$

ERROR: code indent should never use tabs
#14005: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13967:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#14006: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13968:
+^I^I  return OPCODE_RUR_THREADPTR;$

ERROR: code indent should never use tabs
#14007: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13969:
+^I^I}$

ERROR: code indent should never use tabs
#14008: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13970:
+^I      break;$

ERROR: code indent should never use tabs
#14009: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13971:
+^I    case 15:$

ERROR: code indent should never use tabs
#14010: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13972:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14010: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13972:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#14011: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13973:
+^I^I{$

ERROR: code indent should never use tabs
#14012: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13974:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#14013: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13975:
+^I^I  return OPCODE_WUR_EXPSTATE;$

ERROR: code indent should never use tabs
#14014: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13976:
+^I^Icase 231:$

ERROR: code indent should never use tabs
#14015: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13977:
+^I^I  return OPCODE_WUR_THREADPTR;$

ERROR: code indent should never use tabs
#14016: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13978:
+^I^I}$

ERROR: code indent should never use tabs
#14017: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13979:
+^I      break;$

ERROR: code indent should never use tabs
#14018: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13980:
+^I    }$

ERROR: code indent should never use tabs
#14019: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13981:
+^I  break;$

ERROR: code indent should never use tabs
#14020: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13982:
+^Icase 4:$

ERROR: code indent should never use tabs
#14021: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13983:
+^Icase 5:$

ERROR: code indent should never use tabs
#14022: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13984:
+^I  return OPCODE_EXTUI;$

ERROR: code indent should never use tabs
#14023: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13985:
+^Icase 9:$

ERROR: code indent should never use tabs
#14024: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13986:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14024: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13986:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14025: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13987:
+^I    {$

ERROR: code indent should never use tabs
#14026: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13988:
+^I    case 0:$

ERROR: code indent should never use tabs
#14027: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13989:
+^I      return OPCODE_L32E;$

ERROR: code indent should never use tabs
#14028: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13990:
+^I    case 4:$

ERROR: code indent should never use tabs
#14029: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13991:
+^I      return OPCODE_S32E;$

ERROR: code indent should never use tabs
#14030: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13992:
+^I    }$

ERROR: code indent should never use tabs
#14031: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13993:
+^I  break;$

ERROR: code indent should never use tabs
#14032: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13994:
+^I}$

ERROR: that open brace { should be on the previous line
#14033: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13995:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#14034: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13996:
+^I{$

ERROR: code indent should never use tabs
#14035: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13997:
+^Icase 0:$

ERROR: code indent should never use tabs
#14036: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13998:
+^I  if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14036: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13998:
+	  if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14037: FILE: target/xtensa/core-dc233c/xtensa-modules.c:13999:
+^I      Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#14038: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14000:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#14039: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14001:
+^I    return OPCODE_READ_IMPWIRE;$

ERROR: code indent should never use tabs
#14040: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14002:
+^I  break;$

ERROR: code indent should never use tabs
#14041: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14003:
+^Icase 1:$

ERROR: code indent should never use tabs
#14042: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14004:
+^I  if (Field_s3to1_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14042: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14004:
+	  if (Field_s3to1_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14043: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14005:
+^I      Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#14044: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14006:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#14045: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14007:
+^I    return OPCODE_SETB_EXPSTATE;$

ERROR: code indent should never use tabs
#14046: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14008:
+^I  if (Field_s3to1_Slot_inst_get (insn) == 1 &&$

ERROR: braces {} are necessary for all arms of this statement
#14046: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14008:
+	  if (Field_s3to1_Slot_inst_get (insn) == 1 &&
[...]

ERROR: code indent should never use tabs
#14047: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14009:
+^I      Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#14048: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14010:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#14049: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14011:
+^I    return OPCODE_CLRB_EXPSTATE;$

ERROR: code indent should never use tabs
#14050: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14012:
+^I  break;$

ERROR: code indent should never use tabs
#14051: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14013:
+^Icase 2:$

ERROR: code indent should never use tabs
#14052: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14014:
+^I  if (Field_op2_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14052: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14014:
+	  if (Field_op2_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14053: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14015:
+^I      Field_op1_Slot_inst_get (insn) == 14)$

ERROR: code indent should never use tabs
#14054: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14016:
+^I    return OPCODE_WRMSK_EXPSTATE;$

ERROR: code indent should never use tabs
#14055: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14017:
+^I  break;$

ERROR: code indent should never use tabs
#14056: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14018:
+^I}$

ERROR: that open brace { should be on the previous line
#14061: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14023:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#14062: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14024:
+^I{$

ERROR: code indent should never use tabs
#14063: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14025:
+^Icase 0:$

ERROR: code indent should never use tabs
#14064: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14026:
+^I  return OPCODE_L8UI;$

ERROR: code indent should never use tabs
#14065: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14027:
+^Icase 1:$

ERROR: code indent should never use tabs
#14066: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14028:
+^I  return OPCODE_L16UI;$

ERROR: code indent should never use tabs
#14067: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14029:
+^Icase 2:$

ERROR: code indent should never use tabs
#14068: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14030:
+^I  return OPCODE_L32I;$

ERROR: code indent should never use tabs
#14069: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14031:
+^Icase 4:$

ERROR: code indent should never use tabs
#14070: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14032:
+^I  return OPCODE_S8I;$

ERROR: code indent should never use tabs
#14071: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14033:
+^Icase 5:$

ERROR: code indent should never use tabs
#14072: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14034:
+^I  return OPCODE_S16I;$

ERROR: code indent should never use tabs
#14073: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14035:
+^Icase 6:$

ERROR: code indent should never use tabs
#14074: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14036:
+^I  return OPCODE_S32I;$

ERROR: code indent should never use tabs
#14075: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14037:
+^Icase 7:$

ERROR: code indent should never use tabs
#14076: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14038:
+^I  switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14076: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14038:
+	  switch (Field_t_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14077: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14039:
+^I    {$

ERROR: code indent should never use tabs
#14078: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14040:
+^I    case 0:$

ERROR: code indent should never use tabs
#14079: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14041:
+^I      return OPCODE_DPFR;$

ERROR: code indent should never use tabs
#14080: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14042:
+^I    case 1:$

ERROR: code indent should never use tabs
#14081: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14043:
+^I      return OPCODE_DPFW;$

ERROR: code indent should never use tabs
#14082: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14044:
+^I    case 2:$

ERROR: code indent should never use tabs
#14083: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14045:
+^I      return OPCODE_DPFRO;$

ERROR: code indent should never use tabs
#14084: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14046:
+^I    case 3:$

ERROR: code indent should never use tabs
#14085: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14047:
+^I      return OPCODE_DPFWO;$

ERROR: code indent should never use tabs
#14086: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14048:
+^I    case 4:$

ERROR: code indent should never use tabs
#14087: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14049:
+^I      return OPCODE_DHWB;$

ERROR: code indent should never use tabs
#14088: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14050:
+^I    case 5:$

ERROR: code indent should never use tabs
#14089: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14051:
+^I      return OPCODE_DHWBI;$

ERROR: code indent should never use tabs
#14090: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14052:
+^I    case 6:$

ERROR: code indent should never use tabs
#14091: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14053:
+^I      return OPCODE_DHI;$

ERROR: code indent should never use tabs
#14092: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14054:
+^I    case 7:$

ERROR: code indent should never use tabs
#14093: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14055:
+^I      return OPCODE_DII;$

ERROR: code indent should never use tabs
#14094: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14056:
+^I    case 8:$

ERROR: code indent should never use tabs
#14095: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14057:
+^I      switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14095: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14057:
+	      switch (Field_op1_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#14096: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14058:
+^I^I{$

ERROR: code indent should never use tabs
#14097: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14059:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#14098: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14060:
+^I^I  return OPCODE_DPFL;$

ERROR: code indent should never use tabs
#14099: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14061:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#14100: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14062:
+^I^I  return OPCODE_DHU;$

ERROR: code indent should never use tabs
#14101: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14063:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#14102: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14064:
+^I^I  return OPCODE_DIU;$

ERROR: code indent should never use tabs
#14103: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14065:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#14104: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14066:
+^I^I  return OPCODE_DIWB;$

ERROR: code indent should never use tabs
#14105: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14067:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#14106: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14068:
+^I^I  return OPCODE_DIWBI;$

ERROR: code indent should never use tabs
#14107: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14069:
+^I^I}$

ERROR: code indent should never use tabs
#14108: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14070:
+^I      break;$

ERROR: code indent should never use tabs
#14109: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14071:
+^I    case 12:$

ERROR: code indent should never use tabs
#14110: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14072:
+^I      return OPCODE_IPF;$

ERROR: code indent should never use tabs
#14111: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14073:
+^I    case 13:$

ERROR: code indent should never use tabs
#14112: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14074:
+^I      switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14112: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14074:
+	      switch (Field_op1_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#14113: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14075:
+^I^I{$

ERROR: code indent should never use tabs
#14114: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14076:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#14115: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14077:
+^I^I  return OPCODE_IPFL;$

ERROR: code indent should never use tabs
#14116: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14078:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#14117: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14079:
+^I^I  return OPCODE_IHU;$

ERROR: code indent should never use tabs
#14118: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14080:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#14119: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14081:
+^I^I  return OPCODE_IIU;$

ERROR: code indent should never use tabs
#14120: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14082:
+^I^I}$

ERROR: code indent should never use tabs
#14121: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14083:
+^I      break;$

ERROR: code indent should never use tabs
#14122: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14084:
+^I    case 14:$

ERROR: code indent should never use tabs
#14123: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14085:
+^I      return OPCODE_IHI;$

ERROR: code indent should never use tabs
#14124: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14086:
+^I    case 15:$

ERROR: code indent should never use tabs
#14125: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14087:
+^I      return OPCODE_III;$

ERROR: code indent should never use tabs
#14126: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14088:
+^I    }$

ERROR: code indent should never use tabs
#14127: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14089:
+^I  break;$

ERROR: code indent should never use tabs
#14128: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14090:
+^Icase 9:$

ERROR: code indent should never use tabs
#14129: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14091:
+^I  return OPCODE_L16SI;$

ERROR: code indent should never use tabs
#14130: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14092:
+^Icase 10:$

ERROR: code indent should never use tabs
#14131: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14093:
+^I  return OPCODE_MOVI;$

ERROR: code indent should never use tabs
#14132: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14094:
+^Icase 11:$

ERROR: code indent should never use tabs
#14133: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14095:
+^I  return OPCODE_L32AI;$

ERROR: code indent should never use tabs
#14134: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14096:
+^Icase 12:$

ERROR: code indent should never use tabs
#14135: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14097:
+^I  return OPCODE_ADDI;$

ERROR: code indent should never use tabs
#14136: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14098:
+^Icase 13:$

ERROR: code indent should never use tabs
#14137: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14099:
+^I  return OPCODE_ADDMI;$

ERROR: code indent should never use tabs
#14138: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14100:
+^Icase 14:$

ERROR: code indent should never use tabs
#14139: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14101:
+^I  return OPCODE_S32C1I;$

ERROR: code indent should never use tabs
#14140: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14102:
+^Icase 15:$

ERROR: code indent should never use tabs
#14141: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14103:
+^I  return OPCODE_S32RI;$

ERROR: code indent should never use tabs
#14142: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14104:
+^I}$

ERROR: that open brace { should be on the previous line
#14145: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14107:
+      switch (Field_op2_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#14146: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14108:
+^I{$

ERROR: code indent should never use tabs
#14147: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14109:
+^Icase 0:$

ERROR: code indent should never use tabs
#14148: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14110:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14148: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14110:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14149: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14111:
+^I    {$

ERROR: code indent should never use tabs
#14150: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14112:
+^I    case 8:$

ERROR: code indent should never use tabs
#14151: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14113:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14151: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14113:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14152: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14114:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14154: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14116:
+^I^Ireturn OPCODE_MULA_DD_LL_LDINC;$

ERROR: code indent should never use tabs
#14155: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14117:
+^I      break;$

ERROR: code indent should never use tabs
#14156: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14118:
+^I    case 9:$

ERROR: code indent should never use tabs
#14157: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14119:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14157: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14119:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14158: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14120:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14160: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14122:
+^I^Ireturn OPCODE_MULA_DD_HL_LDINC;$

ERROR: code indent should never use tabs
#14161: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14123:
+^I      break;$

ERROR: code indent should never use tabs
#14162: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14124:
+^I    case 10:$

ERROR: code indent should never use tabs
#14163: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14125:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14163: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14125:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14164: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14126:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14166: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14128:
+^I^Ireturn OPCODE_MULA_DD_LH_LDINC;$

ERROR: code indent should never use tabs
#14167: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14129:
+^I      break;$

ERROR: code indent should never use tabs
#14168: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14130:
+^I    case 11:$

ERROR: code indent should never use tabs
#14169: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14131:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14169: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14131:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14170: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14132:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14172: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14134:
+^I^Ireturn OPCODE_MULA_DD_HH_LDINC;$

ERROR: code indent should never use tabs
#14173: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14135:
+^I      break;$

ERROR: code indent should never use tabs
#14174: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14136:
+^I    }$

ERROR: code indent should never use tabs
#14175: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14137:
+^I  break;$

ERROR: code indent should never use tabs
#14176: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14138:
+^Icase 1:$

ERROR: code indent should never use tabs
#14177: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14139:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14177: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14139:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14178: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14140:
+^I    {$

ERROR: code indent should never use tabs
#14179: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14141:
+^I    case 8:$

ERROR: code indent should never use tabs
#14180: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14142:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14180: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14142:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14181: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14143:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14183: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14145:
+^I^Ireturn OPCODE_MULA_DD_LL_LDDEC;$

ERROR: code indent should never use tabs
#14184: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14146:
+^I      break;$

ERROR: code indent should never use tabs
#14185: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14147:
+^I    case 9:$

ERROR: code indent should never use tabs
#14186: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14148:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14186: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14148:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14187: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14149:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14189: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14151:
+^I^Ireturn OPCODE_MULA_DD_HL_LDDEC;$

ERROR: code indent should never use tabs
#14190: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14152:
+^I      break;$

ERROR: code indent should never use tabs
#14191: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14153:
+^I    case 10:$

ERROR: code indent should never use tabs
#14192: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14154:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14192: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14154:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14193: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14155:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14195: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14157:
+^I^Ireturn OPCODE_MULA_DD_LH_LDDEC;$

ERROR: code indent should never use tabs
#14196: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14158:
+^I      break;$

ERROR: code indent should never use tabs
#14197: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14159:
+^I    case 11:$

ERROR: code indent should never use tabs
#14198: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14160:
+^I      if (Field_t3_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14198: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14160:
+	      if (Field_t3_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14199: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14161:
+^I^I  Field_tlo_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14201: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14163:
+^I^Ireturn OPCODE_MULA_DD_HH_LDDEC;$

ERROR: code indent should never use tabs
#14202: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14164:
+^I      break;$

ERROR: code indent should never use tabs
#14203: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14165:
+^I    }$

ERROR: code indent should never use tabs
#14204: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14166:
+^I  break;$

ERROR: code indent should never use tabs
#14205: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14167:
+^Icase 2:$

ERROR: code indent should never use tabs
#14206: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14168:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14206: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14168:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14207: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14169:
+^I    {$

ERROR: code indent should never use tabs
#14208: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14170:
+^I    case 4:$

ERROR: code indent should never use tabs
#14209: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14171:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14209: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14171:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14210: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14172:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14214: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14176:
+^I^Ireturn OPCODE_MUL_DD_LL;$

ERROR: code indent should never use tabs
#14215: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14177:
+^I      break;$

ERROR: code indent should never use tabs
#14216: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14178:
+^I    case 5:$

ERROR: code indent should never use tabs
#14217: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14179:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14217: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14179:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14218: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14180:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14222: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14184:
+^I^Ireturn OPCODE_MUL_DD_HL;$

ERROR: code indent should never use tabs
#14223: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14185:
+^I      break;$

ERROR: code indent should never use tabs
#14224: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14186:
+^I    case 6:$

ERROR: code indent should never use tabs
#14225: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14187:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14225: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14187:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14226: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14188:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14230: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14192:
+^I^Ireturn OPCODE_MUL_DD_LH;$

ERROR: code indent should never use tabs
#14231: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14193:
+^I      break;$

ERROR: code indent should never use tabs
#14232: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14194:
+^I    case 7:$

ERROR: code indent should never use tabs
#14233: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14195:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14233: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14195:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14234: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14196:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14238: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14200:
+^I^Ireturn OPCODE_MUL_DD_HH;$

ERROR: code indent should never use tabs
#14239: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14201:
+^I      break;$

ERROR: code indent should never use tabs
#14240: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14202:
+^I    case 8:$

ERROR: code indent should never use tabs
#14241: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14203:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14241: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14203:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14242: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14204:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14246: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14208:
+^I^Ireturn OPCODE_MULA_DD_LL;$

ERROR: code indent should never use tabs
#14247: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14209:
+^I      break;$

ERROR: code indent should never use tabs
#14248: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14210:
+^I    case 9:$

ERROR: code indent should never use tabs
#14249: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14211:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14249: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14211:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14250: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14212:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14254: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14216:
+^I^Ireturn OPCODE_MULA_DD_HL;$

ERROR: code indent should never use tabs
#14255: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14217:
+^I      break;$

ERROR: code indent should never use tabs
#14256: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14218:
+^I    case 10:$

ERROR: code indent should never use tabs
#14257: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14219:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14257: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14219:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14258: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14220:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14262: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14224:
+^I^Ireturn OPCODE_MULA_DD_LH;$

ERROR: code indent should never use tabs
#14263: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14225:
+^I      break;$

ERROR: code indent should never use tabs
#14264: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14226:
+^I    case 11:$

ERROR: code indent should never use tabs
#14265: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14227:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14265: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14227:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14266: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14228:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14270: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14232:
+^I^Ireturn OPCODE_MULA_DD_HH;$

ERROR: code indent should never use tabs
#14271: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14233:
+^I      break;$

ERROR: code indent should never use tabs
#14272: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14234:
+^I    case 12:$

ERROR: code indent should never use tabs
#14273: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14235:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14273: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14235:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14274: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14236:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14278: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14240:
+^I^Ireturn OPCODE_MULS_DD_LL;$

ERROR: code indent should never use tabs
#14279: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14241:
+^I      break;$

ERROR: code indent should never use tabs
#14280: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14242:
+^I    case 13:$

ERROR: code indent should never use tabs
#14281: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14243:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14281: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14243:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14282: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14244:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14286: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14248:
+^I^Ireturn OPCODE_MULS_DD_HL;$

ERROR: code indent should never use tabs
#14287: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14249:
+^I      break;$

ERROR: code indent should never use tabs
#14288: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14250:
+^I    case 14:$

ERROR: code indent should never use tabs
#14289: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14251:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14289: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14251:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14290: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14252:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14294: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14256:
+^I^Ireturn OPCODE_MULS_DD_LH;$

ERROR: code indent should never use tabs
#14295: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14257:
+^I      break;$

ERROR: code indent should never use tabs
#14296: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14258:
+^I    case 15:$

ERROR: code indent should never use tabs
#14297: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14259:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14297: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14259:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14298: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14260:
+^I^I  Field_w_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_r3_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_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14302: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14264:
+^I^Ireturn OPCODE_MULS_DD_HH;$

ERROR: code indent should never use tabs
#14303: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14265:
+^I      break;$

ERROR: code indent should never use tabs
#14304: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14266:
+^I    }$

ERROR: code indent should never use tabs
#14305: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14267:
+^I  break;$

ERROR: code indent should never use tabs
#14306: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14268:
+^Icase 3:$

ERROR: code indent should never use tabs
#14307: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14269:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14307: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14269:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14308: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14270:
+^I    {$

ERROR: code indent should never use tabs
#14309: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14271:
+^I    case 4:$

ERROR: code indent should never use tabs
#14310: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14272:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14310: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14272:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14311: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14273:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14313: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14275:
+^I^Ireturn OPCODE_MUL_AD_LL;$

ERROR: code indent should never use tabs
#14314: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14276:
+^I      break;$

ERROR: code indent should never use tabs
#14315: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14277:
+^I    case 5:$

ERROR: code indent should never use tabs
#14316: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14278:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14316: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14278:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14317: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14279:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14319: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14281:
+^I^Ireturn OPCODE_MUL_AD_HL;$

ERROR: code indent should never use tabs
#14320: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14282:
+^I      break;$

ERROR: code indent should never use tabs
#14321: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14283:
+^I    case 6:$

ERROR: code indent should never use tabs
#14322: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14284:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14322: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14284:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14323: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14285:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14325: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14287:
+^I^Ireturn OPCODE_MUL_AD_LH;$

ERROR: code indent should never use tabs
#14326: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14288:
+^I      break;$

ERROR: code indent should never use tabs
#14327: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14289:
+^I    case 7:$

ERROR: code indent should never use tabs
#14328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14290:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14328: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14290:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14329: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14291:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14331: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14293:
+^I^Ireturn OPCODE_MUL_AD_HH;$

ERROR: code indent should never use tabs
#14332: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14294:
+^I      break;$

ERROR: code indent should never use tabs
#14333: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14295:
+^I    case 8:$

ERROR: code indent should never use tabs
#14334: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14296:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14334: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14296:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14335: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14297:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14337: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14299:
+^I^Ireturn OPCODE_MULA_AD_LL;$

ERROR: code indent should never use tabs
#14338: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14300:
+^I      break;$

ERROR: code indent should never use tabs
#14339: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14301:
+^I    case 9:$

ERROR: code indent should never use tabs
#14340: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14302:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14340: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14302:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14341: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14303:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14343: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14305:
+^I^Ireturn OPCODE_MULA_AD_HL;$

ERROR: code indent should never use tabs
#14344: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14306:
+^I      break;$

ERROR: code indent should never use tabs
#14345: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14307:
+^I    case 10:$

ERROR: code indent should never use tabs
#14346: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14308:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14346: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14308:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14347: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14309:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14349: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14311:
+^I^Ireturn OPCODE_MULA_AD_LH;$

ERROR: code indent should never use tabs
#14350: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14312:
+^I      break;$

ERROR: code indent should never use tabs
#14351: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14313:
+^I    case 11:$

ERROR: code indent should never use tabs
#14352: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14314:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14352: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14314:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14353: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14315:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14355: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14317:
+^I^Ireturn OPCODE_MULA_AD_HH;$

ERROR: code indent should never use tabs
#14356: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14318:
+^I      break;$

ERROR: code indent should never use tabs
#14357: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14319:
+^I    case 12:$

ERROR: code indent should never use tabs
#14358: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14320:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14358: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14320:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14359: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14321:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14361: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14323:
+^I^Ireturn OPCODE_MULS_AD_LL;$

ERROR: code indent should never use tabs
#14362: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14324:
+^I      break;$

ERROR: code indent should never use tabs
#14363: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14325:
+^I    case 13:$

ERROR: code indent should never use tabs
#14364: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14326:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14364: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14326:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14365: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14327:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14367: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14329:
+^I^Ireturn OPCODE_MULS_AD_HL;$

ERROR: code indent should never use tabs
#14368: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14330:
+^I      break;$

ERROR: code indent should never use tabs
#14369: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14331:
+^I    case 14:$

ERROR: code indent should never use tabs
#14370: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14332:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14370: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14332:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14371: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14333:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14373: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14335:
+^I^Ireturn OPCODE_MULS_AD_LH;$

ERROR: code indent should never use tabs
#14374: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14336:
+^I      break;$

ERROR: code indent should never use tabs
#14375: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14337:
+^I    case 15:$

ERROR: code indent should never use tabs
#14376: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14338:
+^I      if (Field_r_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14376: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14338:
+	      if (Field_r_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14377: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14339:
+^I^I  Field_t3_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_tlo_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14379: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14341:
+^I^Ireturn OPCODE_MULS_AD_HH;$

ERROR: code indent should never use tabs
#14380: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14342:
+^I      break;$

ERROR: code indent should never use tabs
#14381: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14343:
+^I    }$

ERROR: code indent should never use tabs
#14382: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14344:
+^I  break;$

ERROR: code indent should never use tabs
#14383: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14345:
+^Icase 4:$

ERROR: code indent should never use tabs
#14384: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14346:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14384: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14346:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14385: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14347:
+^I    {$

ERROR: code indent should never use tabs
#14386: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14348:
+^I    case 8:$

ERROR: code indent should never use tabs
#14387: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14349:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14387: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14349:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14388: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14350:
+^I^Ireturn OPCODE_MULA_DA_LL_LDINC;$

ERROR: code indent should never use tabs
#14389: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14351:
+^I      break;$

ERROR: code indent should never use tabs
#14390: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14352:
+^I    case 9:$

ERROR: code indent should never use tabs
#14391: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14353:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14391: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14353:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14392: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14354:
+^I^Ireturn OPCODE_MULA_DA_HL_LDINC;$

ERROR: code indent should never use tabs
#14393: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14355:
+^I      break;$

ERROR: code indent should never use tabs
#14394: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14356:
+^I    case 10:$

ERROR: code indent should never use tabs
#14395: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14357:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14395: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14357:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14396: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14358:
+^I^Ireturn OPCODE_MULA_DA_LH_LDINC;$

ERROR: code indent should never use tabs
#14397: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14359:
+^I      break;$

ERROR: code indent should never use tabs
#14398: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14360:
+^I    case 11:$

ERROR: code indent should never use tabs
#14399: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14361:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14399: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14361:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14400: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14362:
+^I^Ireturn OPCODE_MULA_DA_HH_LDINC;$

ERROR: code indent should never use tabs
#14401: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14363:
+^I      break;$

ERROR: code indent should never use tabs
#14402: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14364:
+^I    }$

ERROR: code indent should never use tabs
#14403: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14365:
+^I  break;$

ERROR: code indent should never use tabs
#14404: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14366:
+^Icase 5:$

ERROR: code indent should never use tabs
#14405: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14367:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14405: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14367:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14406: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14368:
+^I    {$

ERROR: code indent should never use tabs
#14407: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14369:
+^I    case 8:$

ERROR: code indent should never use tabs
#14408: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14370:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14408: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14370:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14409: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14371:
+^I^Ireturn OPCODE_MULA_DA_LL_LDDEC;$

ERROR: code indent should never use tabs
#14410: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14372:
+^I      break;$

ERROR: code indent should never use tabs
#14411: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14373:
+^I    case 9:$

ERROR: code indent should never use tabs
#14412: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14374:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14412: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14374:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14413: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14375:
+^I^Ireturn OPCODE_MULA_DA_HL_LDDEC;$

ERROR: code indent should never use tabs
#14414: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14376:
+^I      break;$

ERROR: code indent should never use tabs
#14415: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14377:
+^I    case 10:$

ERROR: code indent should never use tabs
#14416: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14378:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14416: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14378:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14417: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14379:
+^I^Ireturn OPCODE_MULA_DA_LH_LDDEC;$

ERROR: code indent should never use tabs
#14418: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14380:
+^I      break;$

ERROR: code indent should never use tabs
#14419: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14381:
+^I    case 11:$

ERROR: code indent should never use tabs
#14420: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14382:
+^I      if (Field_r3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14420: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14382:
+	      if (Field_r3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14421: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14383:
+^I^Ireturn OPCODE_MULA_DA_HH_LDDEC;$

ERROR: code indent should never use tabs
#14422: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14384:
+^I      break;$

ERROR: code indent should never use tabs
#14423: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14385:
+^I    }$

ERROR: code indent should never use tabs
#14424: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14386:
+^I  break;$

ERROR: code indent should never use tabs
#14425: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14387:
+^Icase 6:$

ERROR: code indent should never use tabs
#14426: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14388:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14426: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14388:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14427: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14389:
+^I    {$

ERROR: code indent should never use tabs
#14428: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14390:
+^I    case 4:$

ERROR: code indent should never use tabs
#14429: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14391:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14429: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14391:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14430: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14392:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14432: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14394:
+^I^Ireturn OPCODE_MUL_DA_LL;$

ERROR: code indent should never use tabs
#14433: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14395:
+^I      break;$

ERROR: code indent should never use tabs
#14434: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14396:
+^I    case 5:$

ERROR: code indent should never use tabs
#14435: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14397:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14435: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14397:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14436: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14398:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14438: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14400:
+^I^Ireturn OPCODE_MUL_DA_HL;$

ERROR: code indent should never use tabs
#14439: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14401:
+^I      break;$

ERROR: code indent should never use tabs
#14440: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14402:
+^I    case 6:$

ERROR: code indent should never use tabs
#14441: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14403:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14441: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14403:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14442: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14404:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14444: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14406:
+^I^Ireturn OPCODE_MUL_DA_LH;$

ERROR: code indent should never use tabs
#14445: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14407:
+^I      break;$

ERROR: code indent should never use tabs
#14446: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14408:
+^I    case 7:$

ERROR: code indent should never use tabs
#14447: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14409:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14447: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14409:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14448: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14410:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14450: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14412:
+^I^Ireturn OPCODE_MUL_DA_HH;$

ERROR: code indent should never use tabs
#14451: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14413:
+^I      break;$

ERROR: code indent should never use tabs
#14452: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14414:
+^I    case 8:$

ERROR: code indent should never use tabs
#14453: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14415:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14453: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14415:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14454: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14416:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14456: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14418:
+^I^Ireturn OPCODE_MULA_DA_LL;$

ERROR: code indent should never use tabs
#14457: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14419:
+^I      break;$

ERROR: code indent should never use tabs
#14458: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14420:
+^I    case 9:$

ERROR: code indent should never use tabs
#14459: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14421:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14459: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14421:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14460: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14422:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14462: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14424:
+^I^Ireturn OPCODE_MULA_DA_HL;$

ERROR: code indent should never use tabs
#14463: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14425:
+^I      break;$

ERROR: code indent should never use tabs
#14464: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14426:
+^I    case 10:$

ERROR: code indent should never use tabs
#14465: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14427:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14465: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14427:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14466: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14428:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14468: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14430:
+^I^Ireturn OPCODE_MULA_DA_LH;$

ERROR: code indent should never use tabs
#14469: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14431:
+^I      break;$

ERROR: code indent should never use tabs
#14470: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14432:
+^I    case 11:$

ERROR: code indent should never use tabs
#14471: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14433:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14471: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14433:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14472: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14434:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14474: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14436:
+^I^Ireturn OPCODE_MULA_DA_HH;$

ERROR: code indent should never use tabs
#14475: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14437:
+^I      break;$

ERROR: code indent should never use tabs
#14476: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14438:
+^I    case 12:$

ERROR: code indent should never use tabs
#14477: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14439:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14477: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14439:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14478: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14440:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14480: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14442:
+^I^Ireturn OPCODE_MULS_DA_LL;$

ERROR: code indent should never use tabs
#14481: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14443:
+^I      break;$

ERROR: code indent should never use tabs
#14482: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14444:
+^I    case 13:$

ERROR: code indent should never use tabs
#14483: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14445:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14483: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14445:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14484: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14446:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14486: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14448:
+^I^Ireturn OPCODE_MULS_DA_HL;$

ERROR: code indent should never use tabs
#14487: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14449:
+^I      break;$

ERROR: code indent should never use tabs
#14488: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14450:
+^I    case 14:$

ERROR: code indent should never use tabs
#14489: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14451:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14489: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14451:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14490: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14452:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14492: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14454:
+^I^Ireturn OPCODE_MULS_DA_LH;$

ERROR: code indent should never use tabs
#14493: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14455:
+^I      break;$

ERROR: code indent should never use tabs
#14494: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14456:
+^I    case 15:$

ERROR: code indent should never use tabs
#14495: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14457:
+^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14495: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14457:
+	      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14496: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14458:
+^I^I  Field_w_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_r3_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14498: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14460:
+^I^Ireturn OPCODE_MULS_DA_HH;$

ERROR: code indent should never use tabs
#14499: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14461:
+^I      break;$

ERROR: code indent should never use tabs
#14500: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14462:
+^I    }$

ERROR: code indent should never use tabs
#14501: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14463:
+^I  break;$

ERROR: code indent should never use tabs
#14502: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14464:
+^Icase 7:$

ERROR: code indent should never use tabs
#14503: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14465:
+^I  switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14503: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14465:
+	  switch (Field_op1_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14504: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14466:
+^I    {$

ERROR: code indent should never use tabs
#14505: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14467:
+^I    case 0:$

ERROR: code indent should never use tabs
#14506: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14468:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14506: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14468:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14507: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14469:
+^I^Ireturn OPCODE_UMUL_AA_LL;$

ERROR: code indent should never use tabs
#14508: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14470:
+^I      break;$

ERROR: code indent should never use tabs
#14509: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14471:
+^I    case 1:$

ERROR: code indent should never use tabs
#14510: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14472:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14510: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14472:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14511: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14473:
+^I^Ireturn OPCODE_UMUL_AA_HL;$

ERROR: code indent should never use tabs
#14512: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14474:
+^I      break;$

ERROR: code indent should never use tabs
#14513: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14475:
+^I    case 2:$

ERROR: code indent should never use tabs
#14514: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14476:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14514: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14476:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14515: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14477:
+^I^Ireturn OPCODE_UMUL_AA_LH;$

ERROR: code indent should never use tabs
#14516: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14478:
+^I      break;$

ERROR: code indent should never use tabs
#14517: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14479:
+^I    case 3:$

ERROR: code indent should never use tabs
#14518: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14480:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14518: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14480:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14519: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14481:
+^I^Ireturn OPCODE_UMUL_AA_HH;$

ERROR: code indent should never use tabs
#14520: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14482:
+^I      break;$

ERROR: code indent should never use tabs
#14521: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14483:
+^I    case 4:$

ERROR: code indent should never use tabs
#14522: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14484:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14522: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14484:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14523: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14485:
+^I^Ireturn OPCODE_MUL_AA_LL;$

ERROR: code indent should never use tabs
#14524: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14486:
+^I      break;$

ERROR: code indent should never use tabs
#14525: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14487:
+^I    case 5:$

ERROR: code indent should never use tabs
#14526: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14488:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14526: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14488:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14527: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14489:
+^I^Ireturn OPCODE_MUL_AA_HL;$

ERROR: code indent should never use tabs
#14528: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14490:
+^I      break;$

ERROR: code indent should never use tabs
#14529: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14491:
+^I    case 6:$

ERROR: code indent should never use tabs
#14530: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14492:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14530: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14492:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14531: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14493:
+^I^Ireturn OPCODE_MUL_AA_LH;$

ERROR: code indent should never use tabs
#14532: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14494:
+^I      break;$

ERROR: code indent should never use tabs
#14533: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14495:
+^I    case 7:$

ERROR: code indent should never use tabs
#14534: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14496:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14534: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14496:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14535: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14497:
+^I^Ireturn OPCODE_MUL_AA_HH;$

ERROR: code indent should never use tabs
#14536: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14498:
+^I      break;$

ERROR: code indent should never use tabs
#14537: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14499:
+^I    case 8:$

ERROR: code indent should never use tabs
#14538: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14500:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14538: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14500:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14539: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14501:
+^I^Ireturn OPCODE_MULA_AA_LL;$

ERROR: code indent should never use tabs
#14540: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14502:
+^I      break;$

ERROR: code indent should never use tabs
#14541: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14503:
+^I    case 9:$

ERROR: code indent should never use tabs
#14542: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14504:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14542: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14504:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14543: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14505:
+^I^Ireturn OPCODE_MULA_AA_HL;$

ERROR: code indent should never use tabs
#14544: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14506:
+^I      break;$

ERROR: code indent should never use tabs
#14545: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14507:
+^I    case 10:$

ERROR: code indent should never use tabs
#14546: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14508:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14546: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14508:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14547: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14509:
+^I^Ireturn OPCODE_MULA_AA_LH;$

ERROR: code indent should never use tabs
#14548: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14510:
+^I      break;$

ERROR: code indent should never use tabs
#14549: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14511:
+^I    case 11:$

ERROR: code indent should never use tabs
#14550: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14512:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14550: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14512:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14551: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14513:
+^I^Ireturn OPCODE_MULA_AA_HH;$

ERROR: code indent should never use tabs
#14552: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14514:
+^I      break;$

ERROR: code indent should never use tabs
#14553: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14515:
+^I    case 12:$

ERROR: code indent should never use tabs
#14554: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14516:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14554: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14516:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14555: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14517:
+^I^Ireturn OPCODE_MULS_AA_LL;$

ERROR: code indent should never use tabs
#14556: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14518:
+^I      break;$

ERROR: code indent should never use tabs
#14557: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14519:
+^I    case 13:$

ERROR: code indent should never use tabs
#14558: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14520:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14558: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14520:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14559: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14521:
+^I^Ireturn OPCODE_MULS_AA_HL;$

ERROR: code indent should never use tabs
#14560: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14522:
+^I      break;$

ERROR: code indent should never use tabs
#14561: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14523:
+^I    case 14:$

ERROR: code indent should never use tabs
#14562: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14524:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14562: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14524:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14563: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14525:
+^I^Ireturn OPCODE_MULS_AA_LH;$

ERROR: code indent should never use tabs
#14564: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14526:
+^I      break;$

ERROR: code indent should never use tabs
#14565: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14527:
+^I    case 15:$

ERROR: code indent should never use tabs
#14566: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14528:
+^I      if (Field_r_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14566: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14528:
+	      if (Field_r_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14567: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14529:
+^I^Ireturn OPCODE_MULS_AA_HH;$

ERROR: code indent should never use tabs
#14568: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14530:
+^I      break;$

ERROR: code indent should never use tabs
#14569: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14531:
+^I    }$

ERROR: code indent should never use tabs
#14570: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14532:
+^I  break;$

ERROR: code indent should never use tabs
#14571: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14533:
+^Icase 8:$

ERROR: code indent should never use tabs
#14572: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14534:
+^I  if (Field_op1_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14572: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14534:
+	  if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14573: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14535:
+^I      Field_t_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#14574: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14536:
+^I      Field_rhi_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14575: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14537:
+^I    return OPCODE_LDINC;$

ERROR: code indent should never use tabs
#14576: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14538:
+^I  break;$

ERROR: code indent should never use tabs
#14577: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14539:
+^Icase 9:$

ERROR: code indent should never use tabs
#14578: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14540:
+^I  if (Field_op1_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#14578: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14540:
+	  if (Field_op1_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#14579: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14541:
+^I      Field_t_Slot_inst_get (insn) == 0 &&$

ERROR: code indent should never use tabs
#14580: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14542:
+^I      Field_rhi_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#14581: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14543:
+^I    return OPCODE_LDDEC;$

ERROR: code indent should never use tabs
#14582: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14544:
+^I  break;$

ERROR: code indent should never use tabs
#14583: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14545:
+^I}$

ERROR: that open brace { should be on the previous line
#14586: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14548:
+      switch (Field_n_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#14587: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14549:
+^I{$

ERROR: code indent should never use tabs
#14588: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14550:
+^Icase 0:$

ERROR: code indent should never use tabs
#14589: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14551:
+^I  return OPCODE_CALL0;$

ERROR: code indent should never use tabs
#14590: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14552:
+^Icase 1:$

ERROR: code indent should never use tabs
#14591: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14553:
+^I  return OPCODE_CALL4;$

ERROR: code indent should never use tabs
#14592: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14554:
+^Icase 2:$

ERROR: code indent should never use tabs
#14593: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14555:
+^I  return OPCODE_CALL8;$

ERROR: code indent should never use tabs
#14594: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14556:
+^Icase 3:$

ERROR: code indent should never use tabs
#14595: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14557:
+^I  return OPCODE_CALL12;$

ERROR: code indent should never use tabs
#14596: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14558:
+^I}$

ERROR: that open brace { should be on the previous line
#14599: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14561:
+      switch (Field_n_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#14600: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14562:
+^I{$

ERROR: code indent should never use tabs
#14601: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14563:
+^Icase 0:$

ERROR: code indent should never use tabs
#14602: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14564:
+^I  return OPCODE_J;$

ERROR: code indent should never use tabs
#14603: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14565:
+^Icase 1:$

ERROR: code indent should never use tabs
#14604: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14566:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14604: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14566:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14605: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14567:
+^I    {$

ERROR: code indent should never use tabs
#14606: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14568:
+^I    case 0:$

ERROR: code indent should never use tabs
#14607: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14569:
+^I      return OPCODE_BEQZ;$

ERROR: code indent should never use tabs
#14608: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14570:
+^I    case 1:$

ERROR: code indent should never use tabs
#14609: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14571:
+^I      return OPCODE_BNEZ;$

ERROR: code indent should never use tabs
#14610: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14572:
+^I    case 2:$

ERROR: code indent should never use tabs
#14611: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14573:
+^I      return OPCODE_BLTZ;$

ERROR: code indent should never use tabs
#14612: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14574:
+^I    case 3:$

ERROR: code indent should never use tabs
#14613: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14575:
+^I      return OPCODE_BGEZ;$

ERROR: code indent should never use tabs
#14614: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14576:
+^I    }$

ERROR: code indent should never use tabs
#14615: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14577:
+^I  break;$

ERROR: code indent should never use tabs
#14616: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14578:
+^Icase 2:$

ERROR: code indent should never use tabs
#14617: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14579:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14617: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14579:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14618: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14580:
+^I    {$

ERROR: code indent should never use tabs
#14619: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14581:
+^I    case 0:$

ERROR: code indent should never use tabs
#14620: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14582:
+^I      return OPCODE_BEQI;$

ERROR: code indent should never use tabs
#14621: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14583:
+^I    case 1:$

ERROR: code indent should never use tabs
#14622: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14584:
+^I      return OPCODE_BNEI;$

ERROR: code indent should never use tabs
#14623: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14585:
+^I    case 2:$

ERROR: code indent should never use tabs
#14624: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14586:
+^I      return OPCODE_BLTI;$

ERROR: code indent should never use tabs
#14625: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14587:
+^I    case 3:$

ERROR: code indent should never use tabs
#14626: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14588:
+^I      return OPCODE_BGEI;$

ERROR: code indent should never use tabs
#14627: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14589:
+^I    }$

ERROR: code indent should never use tabs
#14628: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14590:
+^I  break;$

ERROR: code indent should never use tabs
#14629: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14591:
+^Icase 3:$

ERROR: code indent should never use tabs
#14630: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14592:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14630: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14592:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#14631: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14593:
+^I    {$

ERROR: code indent should never use tabs
#14632: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14594:
+^I    case 0:$

ERROR: code indent should never use tabs
#14633: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14595:
+^I      return OPCODE_ENTRY;$

ERROR: code indent should never use tabs
#14634: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14596:
+^I    case 1:$

ERROR: code indent should never use tabs
#14635: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14597:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#14635: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14597:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#14636: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14598:
+^I^I{$

ERROR: code indent should never use tabs
#14637: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14599:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#14638: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14600:
+^I^I  return OPCODE_LOOP;$

ERROR: code indent should never use tabs
#14639: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14601:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#14640: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14602:
+^I^I  return OPCODE_LOOPNEZ;$

ERROR: code indent should never use tabs
#14641: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14603:
+^I^Icase 10:$

ERROR: code indent should never use tabs
#14642: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14604:
+^I^I  return OPCODE_LOOPGTZ;$

ERROR: code indent should never use tabs
#14643: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14605:
+^I^I}$

ERROR: code indent should never use tabs
#14644: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14606:
+^I      break;$

ERROR: code indent should never use tabs
#14645: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14607:
+^I    case 2:$

ERROR: code indent should never use tabs
#14646: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14608:
+^I      return OPCODE_BLTUI;$

ERROR: code indent should never use tabs
#14647: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14609:
+^I    case 3:$

ERROR: code indent should never use tabs
#14648: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14610:
+^I      return OPCODE_BGEUI;$

ERROR: code indent should never use tabs
#14649: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14611:
+^I    }$

ERROR: code indent should never use tabs
#14650: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14612:
+^I  break;$

ERROR: code indent should never use tabs
#14651: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14613:
+^I}$

ERROR: that open brace { should be on the previous line
#14654: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14616:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#14655: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14617:
+^I{$

ERROR: code indent should never use tabs
#14656: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14618:
+^Icase 0:$

ERROR: code indent should never use tabs
#14657: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14619:
+^I  return OPCODE_BNONE;$

ERROR: code indent should never use tabs
#14658: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14620:
+^Icase 1:$

ERROR: code indent should never use tabs
#14659: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14621:
+^I  return OPCODE_BEQ;$

ERROR: code indent should never use tabs
#14660: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14622:
+^Icase 2:$

ERROR: code indent should never use tabs
#14661: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14623:
+^I  return OPCODE_BLT;$

ERROR: code indent should never use tabs
#14662: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14624:
+^Icase 3:$

ERROR: code indent should never use tabs
#14663: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14625:
+^I  return OPCODE_BLTU;$

ERROR: code indent should never use tabs
#14664: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14626:
+^Icase 4:$

ERROR: code indent should never use tabs
#14665: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14627:
+^I  return OPCODE_BALL;$

ERROR: code indent should never use tabs
#14666: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14628:
+^Icase 5:$

ERROR: code indent should never use tabs
#14667: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14629:
+^I  return OPCODE_BBC;$

ERROR: code indent should never use tabs
#14668: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14630:
+^Icase 6:$

ERROR: code indent should never use tabs
#14669: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14631:
+^Icase 7:$

ERROR: code indent should never use tabs
#14670: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14632:
+^I  return OPCODE_BBCI;$

ERROR: code indent should never use tabs
#14671: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14633:
+^Icase 8:$

ERROR: code indent should never use tabs
#14672: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14634:
+^I  return OPCODE_BANY;$

ERROR: code indent should never use tabs
#14673: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14635:
+^Icase 9:$

ERROR: code indent should never use tabs
#14674: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14636:
+^I  return OPCODE_BNE;$

ERROR: code indent should never use tabs
#14675: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14637:
+^Icase 10:$

ERROR: code indent should never use tabs
#14676: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14638:
+^I  return OPCODE_BGE;$

ERROR: code indent should never use tabs
#14677: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14639:
+^Icase 11:$

ERROR: code indent should never use tabs
#14678: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14640:
+^I  return OPCODE_BGEU;$

ERROR: code indent should never use tabs
#14679: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14641:
+^Icase 12:$

ERROR: code indent should never use tabs
#14680: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14642:
+^I  return OPCODE_BNALL;$

ERROR: code indent should never use tabs
#14681: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14643:
+^Icase 13:$

ERROR: code indent should never use tabs
#14682: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14644:
+^I  return OPCODE_BBS;$

ERROR: code indent should never use tabs
#14683: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14645:
+^Icase 14:$

ERROR: code indent should never use tabs
#14684: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14646:
+^Icase 15:$

ERROR: code indent should never use tabs
#14685: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14647:
+^I  return OPCODE_BBSI;$

ERROR: code indent should never use tabs
#14686: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14648:
+^I}$

ERROR: that open brace { should be on the previous line
#14695: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14657:
+  switch (Field_op0_Slot_inst16b_get (insn))
+    {

ERROR: that open brace { should be on the previous line
#14698: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14660:
+      switch (Field_i_Slot_inst16b_get (insn))
+	{

ERROR: code indent should never use tabs
#14699: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14661:
+^I{$

ERROR: code indent should never use tabs
#14700: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14662:
+^Icase 0:$

ERROR: code indent should never use tabs
#14701: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14663:
+^I  return OPCODE_MOVI_N;$

ERROR: code indent should never use tabs
#14702: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14664:
+^Icase 1:$

ERROR: code indent should never use tabs
#14703: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14665:
+^I  switch (Field_z_Slot_inst16b_get (insn))$

ERROR: that open brace { should be on the previous line
#14703: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14665:
+	  switch (Field_z_Slot_inst16b_get (insn))
+	    {

ERROR: code indent should never use tabs
#14704: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14666:
+^I    {$

ERROR: code indent should never use tabs
#14705: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14667:
+^I    case 0:$

ERROR: code indent should never use tabs
#14706: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14668:
+^I      return OPCODE_BEQZ_N;$

ERROR: code indent should never use tabs
#14707: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14669:
+^I    case 1:$

ERROR: code indent should never use tabs
#14708: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14670:
+^I      return OPCODE_BNEZ_N;$

ERROR: code indent should never use tabs
#14709: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14671:
+^I    }$

ERROR: code indent should never use tabs
#14710: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14672:
+^I  break;$

ERROR: code indent should never use tabs
#14711: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14673:
+^I}$

ERROR: that open brace { should be on the previous line
#14714: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14676:
+      switch (Field_r_Slot_inst16b_get (insn))
+	{

ERROR: code indent should never use tabs
#14715: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14677:
+^I{$

ERROR: code indent should never use tabs
#14716: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14678:
+^Icase 0:$

ERROR: code indent should never use tabs
#14717: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14679:
+^I  return OPCODE_MOV_N;$

ERROR: code indent should never use tabs
#14718: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14680:
+^Icase 15:$

ERROR: code indent should never use tabs
#14719: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14681:
+^I  switch (Field_t_Slot_inst16b_get (insn))$

ERROR: that open brace { should be on the previous line
#14719: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14681:
+	  switch (Field_t_Slot_inst16b_get (insn))
+	    {

ERROR: code indent should never use tabs
#14720: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14682:
+^I    {$

ERROR: code indent should never use tabs
#14721: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14683:
+^I    case 0:$

ERROR: code indent should never use tabs
#14722: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14684:
+^I      return OPCODE_RET_N;$

ERROR: code indent should never use tabs
#14723: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14685:
+^I    case 1:$

ERROR: code indent should never use tabs
#14724: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14686:
+^I      return OPCODE_RETW_N;$

ERROR: code indent should never use tabs
#14725: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14687:
+^I    case 2:$

ERROR: code indent should never use tabs
#14726: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14688:
+^I      return OPCODE_BREAK_N;$

ERROR: code indent should never use tabs
#14727: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14689:
+^I    case 3:$

ERROR: code indent should never use tabs
#14728: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14690:
+^I      if (Field_s_Slot_inst16b_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14728: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14690:
+	      if (Field_s_Slot_inst16b_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14729: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14691:
+^I^Ireturn OPCODE_NOP_N;$

ERROR: code indent should never use tabs
#14730: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14692:
+^I      break;$

ERROR: code indent should never use tabs
#14731: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14693:
+^I    case 6:$

ERROR: code indent should never use tabs
#14732: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14694:
+^I      if (Field_s_Slot_inst16b_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#14732: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14694:
+	      if (Field_s_Slot_inst16b_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#14733: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14695:
+^I^Ireturn OPCODE_ILL_N;$

ERROR: code indent should never use tabs
#14734: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14696:
+^I      break;$

ERROR: code indent should never use tabs
#14735: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14697:
+^I    }$

ERROR: code indent should never use tabs
#14736: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14698:
+^I  break;$

ERROR: code indent should never use tabs
#14737: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14699:
+^I}$

ERROR: that open brace { should be on the previous line
#14746: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14708:
+  switch (Field_op0_Slot_inst16a_get (insn))
+    {

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#14760: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14722:
+
 ^

ERROR: trailing whitespace
#14760: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14722:
+^L$

ERROR: code indent should never use tabs
#14765: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14727:
+^I^I^I    xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#14772: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14734:
+^I^I^I    const xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#14779: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14741:
+^I^I^I^Ixtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#14786: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14748:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#14793: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14755:
+^I^I^I^Ixtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#14800: FILE: target/xtensa/core-dc233c/xtensa-modules.c:14762:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#15180: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15142:
+
 ^

ERROR: trailing whitespace
#15180: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15142:
+^L$

ERROR: space prohibited between function name and open parenthesis '('
#15215: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15177:
+format_decoder (const xtensa_insnbuf insn)

ERROR: braces {} are necessary for all arms of this statement
#15217: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15179:
+  if ((insn[0] & 0x8) == 0)
[...]

ERROR: braces {} are necessary for all arms of this statement
#15219: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15181:
+  if ((insn[0] & 0xc) == 0x8)
[...]

ERROR: braces {} are necessary for all arms of this statement
#15221: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15183:
+  if ((insn[0] & 0xe) == 0xc)
[...]

ERROR: space prohibited between function name and open parenthesis '('
#15246: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15208:
+length_decoder (const unsigned char *insn)

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#15252: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15214:
+
 ^

ERROR: trailing whitespace
#15252: FILE: target/xtensa/core-dc233c/xtensa-modules.c:15214:
+^L$

total: 1661 errors, 1 warnings, 15248 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
#68: FILE: target/xtensa/core-fsf/xtensa-modules.c:24:
+
 ^

ERROR: trailing whitespace
#68: FILE: target/xtensa/core-fsf/xtensa-modules.c:24:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#127: FILE: target/xtensa/core-fsf/xtensa-modules.c:83:
+
 ^

ERROR: trailing whitespace
#127: FILE: target/xtensa/core-fsf/xtensa-modules.c:83:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#255: FILE: target/xtensa/core-fsf/xtensa-modules.c:211:
+
 ^

ERROR: trailing whitespace
#255: FILE: target/xtensa/core-fsf/xtensa-modules.c:211:
+^L$

ERROR: code indent should never use tabs
#1223: FILE: target/xtensa/core-fsf/xtensa-modules.c:1179:
+^I^I    uint32 val ATTRIBUTE_UNUSED)$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1252: FILE: target/xtensa/core-fsf/xtensa-modules.c:1208:
+
 ^

ERROR: trailing whitespace
#1252: FILE: target/xtensa/core-fsf/xtensa-modules.c:1208:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1259: FILE: target/xtensa/core-fsf/xtensa-modules.c:1215:
+
 ^

ERROR: trailing whitespace
#1259: FILE: target/xtensa/core-fsf/xtensa-modules.c:1215:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1266: FILE: target/xtensa/core-fsf/xtensa-modules.c:1222:
+
 ^

ERROR: trailing whitespace
#1266: FILE: target/xtensa/core-fsf/xtensa-modules.c:1222:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1273: FILE: target/xtensa/core-fsf/xtensa-modules.c:1229:
+
 ^

ERROR: trailing whitespace
#1273: FILE: target/xtensa/core-fsf/xtensa-modules.c:1229:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#1339: FILE: target/xtensa/core-fsf/xtensa-modules.c:1295:
+
 ^

ERROR: trailing whitespace
#1339: FILE: target/xtensa/core-fsf/xtensa-modules.c:1295:
+^L$

ERROR: line over 90 characters
#1573: FILE: target/xtensa/core-fsf/xtensa-modules.c:1529:
+  simm7_0 = ((((-((((imm7_0 >> 6) & 1)) & (((imm7_0 >> 5) & 1)))) & 0x1ffffff)) << 7) | imm7_0;

ERROR: that open brace { should be on the previous line
#1637: FILE: target/xtensa/core-fsf/xtensa-modules.c:1593:
+  switch (ai4const_0)
+    {

ERROR: trailing statements should be on next line
#1639: FILE: target/xtensa/core-fsf/xtensa-modules.c:1595:
+    case 0xffffffff: t_0 = 0; break;

ERROR: trailing statements should be on next line
#1640: FILE: target/xtensa/core-fsf/xtensa-modules.c:1596:
+    case 0x1: t_0 = 0x1; break;

ERROR: trailing statements should be on next line
#1641: FILE: target/xtensa/core-fsf/xtensa-modules.c:1597:
+    case 0x2: t_0 = 0x2; break;

ERROR: trailing statements should be on next line
#1642: FILE: target/xtensa/core-fsf/xtensa-modules.c:1598:
+    case 0x3: t_0 = 0x3; break;

ERROR: trailing statements should be on next line
#1643: FILE: target/xtensa/core-fsf/xtensa-modules.c:1599:
+    case 0x4: t_0 = 0x4; break;

ERROR: trailing statements should be on next line
#1644: FILE: target/xtensa/core-fsf/xtensa-modules.c:1600:
+    case 0x5: t_0 = 0x5; break;

ERROR: trailing statements should be on next line
#1645: FILE: target/xtensa/core-fsf/xtensa-modules.c:1601:
+    case 0x6: t_0 = 0x6; break;

ERROR: trailing statements should be on next line
#1646: FILE: target/xtensa/core-fsf/xtensa-modules.c:1602:
+    case 0x7: t_0 = 0x7; break;

ERROR: trailing statements should be on next line
#1647: FILE: target/xtensa/core-fsf/xtensa-modules.c:1603:
+    case 0x8: t_0 = 0x8; break;

ERROR: trailing statements should be on next line
#1648: FILE: target/xtensa/core-fsf/xtensa-modules.c:1604:
+    case 0x9: t_0 = 0x9; break;

ERROR: trailing statements should be on next line
#1649: FILE: target/xtensa/core-fsf/xtensa-modules.c:1605:
+    case 0xa: t_0 = 0xa; break;

ERROR: trailing statements should be on next line
#1650: FILE: target/xtensa/core-fsf/xtensa-modules.c:1606:
+    case 0xb: t_0 = 0xb; break;

ERROR: trailing statements should be on next line
#1651: FILE: target/xtensa/core-fsf/xtensa-modules.c:1607:
+    case 0xc: t_0 = 0xc; break;

ERROR: trailing statements should be on next line
#1652: FILE: target/xtensa/core-fsf/xtensa-modules.c:1608:
+    case 0xd: t_0 = 0xd; break;

ERROR: trailing statements should be on next line
#1653: FILE: target/xtensa/core-fsf/xtensa-modules.c:1609:
+    case 0xe: t_0 = 0xe; break;

ERROR: trailing statements should be on next line
#1654: FILE: target/xtensa/core-fsf/xtensa-modules.c:1610:
+    default: t_0 = 0xf; break;

ERROR: that open brace { should be on the previous line
#1675: FILE: target/xtensa/core-fsf/xtensa-modules.c:1631:
+  switch (b4const_0)
+    {

ERROR: trailing statements should be on next line
#1677: FILE: target/xtensa/core-fsf/xtensa-modules.c:1633:
+    case 0xffffffff: r_0 = 0; break;

ERROR: trailing statements should be on next line
#1678: FILE: target/xtensa/core-fsf/xtensa-modules.c:1634:
+    case 0x1: r_0 = 0x1; break;

ERROR: trailing statements should be on next line
#1679: FILE: target/xtensa/core-fsf/xtensa-modules.c:1635:
+    case 0x2: r_0 = 0x2; break;

ERROR: trailing statements should be on next line
#1680: FILE: target/xtensa/core-fsf/xtensa-modules.c:1636:
+    case 0x3: r_0 = 0x3; break;

ERROR: trailing statements should be on next line
#1681: FILE: target/xtensa/core-fsf/xtensa-modules.c:1637:
+    case 0x4: r_0 = 0x4; break;

ERROR: trailing statements should be on next line
#1682: FILE: target/xtensa/core-fsf/xtensa-modules.c:1638:
+    case 0x5: r_0 = 0x5; break;

ERROR: trailing statements should be on next line
#1683: FILE: target/xtensa/core-fsf/xtensa-modules.c:1639:
+    case 0x6: r_0 = 0x6; break;

ERROR: trailing statements should be on next line
#1684: FILE: target/xtensa/core-fsf/xtensa-modules.c:1640:
+    case 0x7: r_0 = 0x7; break;

ERROR: trailing statements should be on next line
#1685: FILE: target/xtensa/core-fsf/xtensa-modules.c:1641:
+    case 0x8: r_0 = 0x8; break;

ERROR: trailing statements should be on next line
#1686: FILE: target/xtensa/core-fsf/xtensa-modules.c:1642:
+    case 0xa: r_0 = 0x9; break;

ERROR: trailing statements should be on next line
#1687: FILE: target/xtensa/core-fsf/xtensa-modules.c:1643:
+    case 0xc: r_0 = 0xa; break;

ERROR: trailing statements should be on next line
#1688: FILE: target/xtensa/core-fsf/xtensa-modules.c:1644:
+    case 0x10: r_0 = 0xb; break;

ERROR: trailing statements should be on next line
#1689: FILE: target/xtensa/core-fsf/xtensa-modules.c:1645:
+    case 0x20: r_0 = 0xc; break;

ERROR: trailing statements should be on next line
#1690: FILE: target/xtensa/core-fsf/xtensa-modules.c:1646:
+    case 0x40: r_0 = 0xd; break;

ERROR: trailing statements should be on next line
#1691: FILE: target/xtensa/core-fsf/xtensa-modules.c:1647:
+    case 0x80: r_0 = 0xe; break;

ERROR: trailing statements should be on next line
#1692: FILE: target/xtensa/core-fsf/xtensa-modules.c:1648:
+    default: r_0 = 0xf; break;

ERROR: that open brace { should be on the previous line
#1713: FILE: target/xtensa/core-fsf/xtensa-modules.c:1669:
+  switch (b4constu_0)
+    {

ERROR: trailing statements should be on next line
#1715: FILE: target/xtensa/core-fsf/xtensa-modules.c:1671:
+    case 0x8000: r_0 = 0; break;

ERROR: trailing statements should be on next line
#1716: FILE: target/xtensa/core-fsf/xtensa-modules.c:1672:
+    case 0x10000: r_0 = 0x1; break;

ERROR: trailing statements should be on next line
#1717: FILE: target/xtensa/core-fsf/xtensa-modules.c:1673:
+    case 0x2: r_0 = 0x2; break;

ERROR: trailing statements should be on next line
#1718: FILE: target/xtensa/core-fsf/xtensa-modules.c:1674:
+    case 0x3: r_0 = 0x3; break;

ERROR: trailing statements should be on next line
#1719: FILE: target/xtensa/core-fsf/xtensa-modules.c:1675:
+    case 0x4: r_0 = 0x4; break;

ERROR: trailing statements should be on next line
#1720: FILE: target/xtensa/core-fsf/xtensa-modules.c:1676:
+    case 0x5: r_0 = 0x5; break;

ERROR: trailing statements should be on next line
#1721: FILE: target/xtensa/core-fsf/xtensa-modules.c:1677:
+    case 0x6: r_0 = 0x6; break;

ERROR: trailing statements should be on next line
#1722: FILE: target/xtensa/core-fsf/xtensa-modules.c:1678:
+    case 0x7: r_0 = 0x7; break;

ERROR: trailing statements should be on next line
#1723: FILE: target/xtensa/core-fsf/xtensa-modules.c:1679:
+    case 0x8: r_0 = 0x8; break;

ERROR: trailing statements should be on next line
#1724: FILE: target/xtensa/core-fsf/xtensa-modules.c:1680:
+    case 0xa: r_0 = 0x9; break;

ERROR: trailing statements should be on next line
#1725: FILE: target/xtensa/core-fsf/xtensa-modules.c:1681:
+    case 0xc: r_0 = 0xa; break;

ERROR: trailing statements should be on next line
#1726: FILE: target/xtensa/core-fsf/xtensa-modules.c:1682:
+    case 0x10: r_0 = 0xb; break;

ERROR: trailing statements should be on next line
#1727: FILE: target/xtensa/core-fsf/xtensa-modules.c:1683:
+    case 0x20: r_0 = 0xc; break;

ERROR: trailing statements should be on next line
#1728: FILE: target/xtensa/core-fsf/xtensa-modules.c:1684:
+    case 0x40: r_0 = 0xd; break;

ERROR: trailing statements should be on next line
#1729: FILE: target/xtensa/core-fsf/xtensa-modules.c:1685:
+    case 0x80: r_0 = 0xe; break;

ERROR: trailing statements should be on next line
#1730: FILE: target/xtensa/core-fsf/xtensa-modules.c:1686:
+    default: r_0 = 0xf; break;

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#2304: FILE: target/xtensa/core-fsf/xtensa-modules.c:2260:
+
 ^

ERROR: trailing whitespace
#2304: FILE: target/xtensa/core-fsf/xtensa-modules.c:2260:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#4856: FILE: target/xtensa/core-fsf/xtensa-modules.c:4812:
+
 ^

ERROR: trailing whitespace
#4856: FILE: target/xtensa/core-fsf/xtensa-modules.c:4812:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#7769: FILE: target/xtensa/core-fsf/xtensa-modules.c:7725:
+
 ^

ERROR: trailing whitespace
#7769: FILE: target/xtensa/core-fsf/xtensa-modules.c:7725:
+^L$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#8648: FILE: target/xtensa/core-fsf/xtensa-modules.c:8604:
+
 ^

ERROR: trailing whitespace
#8648: FILE: target/xtensa/core-fsf/xtensa-modules.c:8604:
+^L$

ERROR: that open brace { should be on the previous line
#8654: FILE: target/xtensa/core-fsf/xtensa-modules.c:8610:
+  switch (Field_op0_Slot_inst_get (insn))
+    {

ERROR: that open brace { should be on the previous line
#8657: FILE: target/xtensa/core-fsf/xtensa-modules.c:8613:
+      switch (Field_op1_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#8658: FILE: target/xtensa/core-fsf/xtensa-modules.c:8614:
+^I{$

ERROR: code indent should never use tabs
#8659: FILE: target/xtensa/core-fsf/xtensa-modules.c:8615:
+^Icase 0:$

ERROR: code indent should never use tabs
#8660: FILE: target/xtensa/core-fsf/xtensa-modules.c:8616:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8660: FILE: target/xtensa/core-fsf/xtensa-modules.c:8616:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#8661: FILE: target/xtensa/core-fsf/xtensa-modules.c:8617:
+^I    {$

ERROR: code indent should never use tabs
#8662: FILE: target/xtensa/core-fsf/xtensa-modules.c:8618:
+^I    case 0:$

ERROR: code indent should never use tabs
#8663: FILE: target/xtensa/core-fsf/xtensa-modules.c:8619:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8663: FILE: target/xtensa/core-fsf/xtensa-modules.c:8619:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#8664: FILE: target/xtensa/core-fsf/xtensa-modules.c:8620:
+^I^I{$

ERROR: code indent should never use tabs
#8665: FILE: target/xtensa/core-fsf/xtensa-modules.c:8621:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#8666: FILE: target/xtensa/core-fsf/xtensa-modules.c:8622:
+^I^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8666: FILE: target/xtensa/core-fsf/xtensa-modules.c:8622:
+		  switch (Field_m_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#8667: FILE: target/xtensa/core-fsf/xtensa-modules.c:8623:
+^I^I    {$

ERROR: code indent should never use tabs
#8668: FILE: target/xtensa/core-fsf/xtensa-modules.c:8624:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#8669: FILE: target/xtensa/core-fsf/xtensa-modules.c:8625:
+^I^I      if (Field_s_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#8669: FILE: target/xtensa/core-fsf/xtensa-modules.c:8625:
+		      if (Field_s_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#8670: FILE: target/xtensa/core-fsf/xtensa-modules.c:8626:
+^I^I^I  Field_n_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#8671: FILE: target/xtensa/core-fsf/xtensa-modules.c:8627:
+^I^I^Ireturn 77; /* ill */$

ERROR: code indent should never use tabs
#8672: FILE: target/xtensa/core-fsf/xtensa-modules.c:8628:
+^I^I      break;$

ERROR: code indent should never use tabs
#8673: FILE: target/xtensa/core-fsf/xtensa-modules.c:8629:
+^I^I    case 2:$

ERROR: code indent should never use tabs
#8674: FILE: target/xtensa/core-fsf/xtensa-modules.c:8630:
+^I^I      switch (Field_n_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8674: FILE: target/xtensa/core-fsf/xtensa-modules.c:8630:
+		      switch (Field_n_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#8675: FILE: target/xtensa/core-fsf/xtensa-modules.c:8631:
+^I^I^I{$

ERROR: code indent should never use tabs
#8676: FILE: target/xtensa/core-fsf/xtensa-modules.c:8632:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#8677: FILE: target/xtensa/core-fsf/xtensa-modules.c:8633:
+^I^I^I  return 96; /* ret */$

ERROR: code indent should never use tabs
#8678: FILE: target/xtensa/core-fsf/xtensa-modules.c:8634:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#8679: FILE: target/xtensa/core-fsf/xtensa-modules.c:8635:
+^I^I^I  return 14; /* retw */$

ERROR: code indent should never use tabs
#8680: FILE: target/xtensa/core-fsf/xtensa-modules.c:8636:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#8681: FILE: target/xtensa/core-fsf/xtensa-modules.c:8637:
+^I^I^I  return 79; /* jx */$

ERROR: code indent should never use tabs
#8682: FILE: target/xtensa/core-fsf/xtensa-modules.c:8638:
+^I^I^I}$

ERROR: code indent should never use tabs
#8683: FILE: target/xtensa/core-fsf/xtensa-modules.c:8639:
+^I^I      break;$

ERROR: code indent should never use tabs
#8684: FILE: target/xtensa/core-fsf/xtensa-modules.c:8640:
+^I^I    case 3:$

ERROR: code indent should never use tabs
#8685: FILE: target/xtensa/core-fsf/xtensa-modules.c:8641:
+^I^I      switch (Field_n_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8685: FILE: target/xtensa/core-fsf/xtensa-modules.c:8641:
+		      switch (Field_n_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#8686: FILE: target/xtensa/core-fsf/xtensa-modules.c:8642:
+^I^I^I{$

ERROR: code indent should never use tabs
#8687: FILE: target/xtensa/core-fsf/xtensa-modules.c:8643:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#8688: FILE: target/xtensa/core-fsf/xtensa-modules.c:8644:
+^I^I^I  return 75; /* callx0 */$

ERROR: code indent should never use tabs
#8689: FILE: target/xtensa/core-fsf/xtensa-modules.c:8645:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#8690: FILE: target/xtensa/core-fsf/xtensa-modules.c:8646:
+^I^I^I  return 10; /* callx4 */$

ERROR: code indent should never use tabs
#8691: FILE: target/xtensa/core-fsf/xtensa-modules.c:8647:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#8692: FILE: target/xtensa/core-fsf/xtensa-modules.c:8648:
+^I^I^I  return 9; /* callx8 */$

ERROR: code indent should never use tabs
#8693: FILE: target/xtensa/core-fsf/xtensa-modules.c:8649:
+^I^I^Icase 3:$

ERROR: code indent should never use tabs
#8694: FILE: target/xtensa/core-fsf/xtensa-modules.c:8650:
+^I^I^I  return 8; /* callx12 */$

ERROR: code indent should never use tabs
#8695: FILE: target/xtensa/core-fsf/xtensa-modules.c:8651:
+^I^I^I}$

ERROR: code indent should never use tabs
#8696: FILE: target/xtensa/core-fsf/xtensa-modules.c:8652:
+^I^I      break;$

ERROR: code indent should never use tabs
#8697: FILE: target/xtensa/core-fsf/xtensa-modules.c:8653:
+^I^I    }$

ERROR: code indent should never use tabs
#8698: FILE: target/xtensa/core-fsf/xtensa-modules.c:8654:
+^I^I  break;$

ERROR: code indent should never use tabs
#8699: FILE: target/xtensa/core-fsf/xtensa-modules.c:8655:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#8700: FILE: target/xtensa/core-fsf/xtensa-modules.c:8656:
+^I^I  return 12; /* movsp */$

ERROR: code indent should never use tabs
#8701: FILE: target/xtensa/core-fsf/xtensa-modules.c:8657:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#8702: FILE: target/xtensa/core-fsf/xtensa-modules.c:8658:
+^I^I  if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: that open brace { should be on the previous line
#8702: FILE: target/xtensa/core-fsf/xtensa-modules.c:8658:
+		  if (Field_s_Slot_inst_get (insn) == 0)
+		    {

ERROR: suspect code indent for conditional statements (18, 22)
#8702: FILE: target/xtensa/core-fsf/xtensa-modules.c:8658:
+		  if (Field_s_Slot_inst_get (insn) == 0)
+		    {

ERROR: code indent should never use tabs
#8703: FILE: target/xtensa/core-fsf/xtensa-modules.c:8659:
+^I^I    {$

ERROR: code indent should never use tabs
#8704: FILE: target/xtensa/core-fsf/xtensa-modules.c:8660:
+^I^I      switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8704: FILE: target/xtensa/core-fsf/xtensa-modules.c:8660:
+		      switch (Field_t_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#8705: FILE: target/xtensa/core-fsf/xtensa-modules.c:8661:
+^I^I^I{$

ERROR: code indent should never use tabs
#8706: FILE: target/xtensa/core-fsf/xtensa-modules.c:8662:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#8707: FILE: target/xtensa/core-fsf/xtensa-modules.c:8663:
+^I^I^I  return 114; /* isync */$

ERROR: code indent should never use tabs
#8708: FILE: target/xtensa/core-fsf/xtensa-modules.c:8664:
+^I^I^Icase 1:$

ERROR: code indent should never use tabs
#8709: FILE: target/xtensa/core-fsf/xtensa-modules.c:8665:
+^I^I^I  return 115; /* rsync */$

ERROR: code indent should never use tabs
#8710: FILE: target/xtensa/core-fsf/xtensa-modules.c:8666:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#8711: FILE: target/xtensa/core-fsf/xtensa-modules.c:8667:
+^I^I^I  return 116; /* esync */$

ERROR: code indent should never use tabs
#8712: FILE: target/xtensa/core-fsf/xtensa-modules.c:8668:
+^I^I^Icase 3:$

ERROR: code indent should never use tabs
#8713: FILE: target/xtensa/core-fsf/xtensa-modules.c:8669:
+^I^I^I  return 117; /* dsync */$

ERROR: code indent should never use tabs
#8714: FILE: target/xtensa/core-fsf/xtensa-modules.c:8670:
+^I^I^Icase 8:$

ERROR: code indent should never use tabs
#8715: FILE: target/xtensa/core-fsf/xtensa-modules.c:8671:
+^I^I^I  return 0; /* excw */$

ERROR: code indent should never use tabs
#8716: FILE: target/xtensa/core-fsf/xtensa-modules.c:8672:
+^I^I^Icase 12:$

ERROR: code indent should never use tabs
#8717: FILE: target/xtensa/core-fsf/xtensa-modules.c:8673:
+^I^I^I  return 112; /* memw */$

ERROR: code indent should never use tabs
#8718: FILE: target/xtensa/core-fsf/xtensa-modules.c:8674:
+^I^I^Icase 13:$

ERROR: code indent should never use tabs
#8719: FILE: target/xtensa/core-fsf/xtensa-modules.c:8675:
+^I^I^I  return 113; /* extw */$

ERROR: code indent should never use tabs
#8720: FILE: target/xtensa/core-fsf/xtensa-modules.c:8676:
+^I^I^Icase 15:$

ERROR: code indent should never use tabs
#8721: FILE: target/xtensa/core-fsf/xtensa-modules.c:8677:
+^I^I^I  return 95; /* nop */$

ERROR: code indent should never use tabs
#8722: FILE: target/xtensa/core-fsf/xtensa-modules.c:8678:
+^I^I^I}$

ERROR: code indent should never use tabs
#8723: FILE: target/xtensa/core-fsf/xtensa-modules.c:8679:
+^I^I    }$

ERROR: code indent should never use tabs
#8724: FILE: target/xtensa/core-fsf/xtensa-modules.c:8680:
+^I^I  break;$

ERROR: code indent should never use tabs
#8725: FILE: target/xtensa/core-fsf/xtensa-modules.c:8681:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#8726: FILE: target/xtensa/core-fsf/xtensa-modules.c:8682:
+^I^I  switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8726: FILE: target/xtensa/core-fsf/xtensa-modules.c:8682:
+		  switch (Field_t_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#8727: FILE: target/xtensa/core-fsf/xtensa-modules.c:8683:
+^I^I    {$

ERROR: code indent should never use tabs
#8728: FILE: target/xtensa/core-fsf/xtensa-modules.c:8684:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#8729: FILE: target/xtensa/core-fsf/xtensa-modules.c:8685:
+^I^I      switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8729: FILE: target/xtensa/core-fsf/xtensa-modules.c:8685:
+		      switch (Field_s_Slot_inst_get (insn))
+			{

ERROR: code indent should never use tabs
#8730: FILE: target/xtensa/core-fsf/xtensa-modules.c:8686:
+^I^I^I{$

ERROR: code indent should never use tabs
#8731: FILE: target/xtensa/core-fsf/xtensa-modules.c:8687:
+^I^I^Icase 0:$

ERROR: code indent should never use tabs
#8732: FILE: target/xtensa/core-fsf/xtensa-modules.c:8688:
+^I^I^I  return 1; /* rfe */$

ERROR: code indent should never use tabs
#8733: FILE: target/xtensa/core-fsf/xtensa-modules.c:8689:
+^I^I^Icase 2:$

ERROR: code indent should never use tabs
#8734: FILE: target/xtensa/core-fsf/xtensa-modules.c:8690:
+^I^I^I  return 2; /* rfde */$

ERROR: code indent should never use tabs
#8735: FILE: target/xtensa/core-fsf/xtensa-modules.c:8691:
+^I^I^Icase 4:$

ERROR: code indent should never use tabs
#8736: FILE: target/xtensa/core-fsf/xtensa-modules.c:8692:
+^I^I^I  return 16; /* rfwo */$

ERROR: code indent should never use tabs
#8737: FILE: target/xtensa/core-fsf/xtensa-modules.c:8693:
+^I^I^Icase 5:$

ERROR: code indent should never use tabs
#8738: FILE: target/xtensa/core-fsf/xtensa-modules.c:8694:
+^I^I^I  return 17; /* rfwu */$

ERROR: code indent should never use tabs
#8739: FILE: target/xtensa/core-fsf/xtensa-modules.c:8695:
+^I^I^I}$

ERROR: code indent should never use tabs
#8740: FILE: target/xtensa/core-fsf/xtensa-modules.c:8696:
+^I^I      break;$

ERROR: code indent should never use tabs
#8741: FILE: target/xtensa/core-fsf/xtensa-modules.c:8697:
+^I^I    case 1:$

ERROR: code indent should never use tabs
#8742: FILE: target/xtensa/core-fsf/xtensa-modules.c:8698:
+^I^I      return 188; /* rfi */$

ERROR: code indent should never use tabs
#8743: FILE: target/xtensa/core-fsf/xtensa-modules.c:8699:
+^I^I    }$

ERROR: code indent should never use tabs
#8744: FILE: target/xtensa/core-fsf/xtensa-modules.c:8700:
+^I^I  break;$

ERROR: code indent should never use tabs
#8745: FILE: target/xtensa/core-fsf/xtensa-modules.c:8701:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#8746: FILE: target/xtensa/core-fsf/xtensa-modules.c:8702:
+^I^I  return 196; /* break */$

ERROR: code indent should never use tabs
#8747: FILE: target/xtensa/core-fsf/xtensa-modules.c:8703:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#8748: FILE: target/xtensa/core-fsf/xtensa-modules.c:8704:
+^I^I  switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8748: FILE: target/xtensa/core-fsf/xtensa-modules.c:8704:
+		  switch (Field_s_Slot_inst_get (insn))
+		    {

ERROR: code indent should never use tabs
#8749: FILE: target/xtensa/core-fsf/xtensa-modules.c:8705:
+^I^I    {$

ERROR: code indent should never use tabs
#8750: FILE: target/xtensa/core-fsf/xtensa-modules.c:8706:
+^I^I    case 0:$

ERROR: code indent should never use tabs
#8751: FILE: target/xtensa/core-fsf/xtensa-modules.c:8707:
+^I^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8751: FILE: target/xtensa/core-fsf/xtensa-modules.c:8707:
+		      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8752: FILE: target/xtensa/core-fsf/xtensa-modules.c:8708:
+^I^I^Ireturn 3; /* syscall */$

ERROR: code indent should never use tabs
#8753: FILE: target/xtensa/core-fsf/xtensa-modules.c:8709:
+^I^I      break;$

ERROR: code indent should never use tabs
#8754: FILE: target/xtensa/core-fsf/xtensa-modules.c:8710:
+^I^I    case 1:$

ERROR: code indent should never use tabs
#8755: FILE: target/xtensa/core-fsf/xtensa-modules.c:8711:
+^I^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8755: FILE: target/xtensa/core-fsf/xtensa-modules.c:8711:
+		      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8756: FILE: target/xtensa/core-fsf/xtensa-modules.c:8712:
+^I^I^Ireturn 4; /* simcall */$

ERROR: code indent should never use tabs
#8757: FILE: target/xtensa/core-fsf/xtensa-modules.c:8713:
+^I^I      break;$

ERROR: code indent should never use tabs
#8758: FILE: target/xtensa/core-fsf/xtensa-modules.c:8714:
+^I^I    }$

ERROR: code indent should never use tabs
#8759: FILE: target/xtensa/core-fsf/xtensa-modules.c:8715:
+^I^I  break;$

ERROR: code indent should never use tabs
#8760: FILE: target/xtensa/core-fsf/xtensa-modules.c:8716:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#8761: FILE: target/xtensa/core-fsf/xtensa-modules.c:8717:
+^I^I  return 118; /* rsil */$

ERROR: code indent should never use tabs
#8762: FILE: target/xtensa/core-fsf/xtensa-modules.c:8718:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#8763: FILE: target/xtensa/core-fsf/xtensa-modules.c:8719:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8763: FILE: target/xtensa/core-fsf/xtensa-modules.c:8719:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8764: FILE: target/xtensa/core-fsf/xtensa-modules.c:8720:
+^I^I    return 189; /* waiti */$

ERROR: code indent should never use tabs
#8765: FILE: target/xtensa/core-fsf/xtensa-modules.c:8721:
+^I^I  break;$

ERROR: code indent should never use tabs
#8766: FILE: target/xtensa/core-fsf/xtensa-modules.c:8722:
+^I^I}$

ERROR: code indent should never use tabs
#8767: FILE: target/xtensa/core-fsf/xtensa-modules.c:8723:
+^I      break;$

ERROR: code indent should never use tabs
#8768: FILE: target/xtensa/core-fsf/xtensa-modules.c:8724:
+^I    case 1:$

ERROR: code indent should never use tabs
#8769: FILE: target/xtensa/core-fsf/xtensa-modules.c:8725:
+^I      return 47; /* and */$

ERROR: code indent should never use tabs
#8770: FILE: target/xtensa/core-fsf/xtensa-modules.c:8726:
+^I    case 2:$

ERROR: code indent should never use tabs
#8771: FILE: target/xtensa/core-fsf/xtensa-modules.c:8727:
+^I      return 48; /* or */$

ERROR: code indent should never use tabs
#8772: FILE: target/xtensa/core-fsf/xtensa-modules.c:8728:
+^I    case 3:$

ERROR: code indent should never use tabs
#8773: FILE: target/xtensa/core-fsf/xtensa-modules.c:8729:
+^I      return 49; /* xor */$

ERROR: code indent should never use tabs
#8774: FILE: target/xtensa/core-fsf/xtensa-modules.c:8730:
+^I    case 4:$

ERROR: code indent should never use tabs
#8775: FILE: target/xtensa/core-fsf/xtensa-modules.c:8731:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8775: FILE: target/xtensa/core-fsf/xtensa-modules.c:8731:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#8776: FILE: target/xtensa/core-fsf/xtensa-modules.c:8732:
+^I^I{$

ERROR: code indent should never use tabs
#8777: FILE: target/xtensa/core-fsf/xtensa-modules.c:8733:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#8778: FILE: target/xtensa/core-fsf/xtensa-modules.c:8734:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8778: FILE: target/xtensa/core-fsf/xtensa-modules.c:8734:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8779: FILE: target/xtensa/core-fsf/xtensa-modules.c:8735:
+^I^I    return 100; /* ssr */$

ERROR: code indent should never use tabs
#8780: FILE: target/xtensa/core-fsf/xtensa-modules.c:8736:
+^I^I  break;$

ERROR: code indent should never use tabs
#8781: FILE: target/xtensa/core-fsf/xtensa-modules.c:8737:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#8782: FILE: target/xtensa/core-fsf/xtensa-modules.c:8738:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8782: FILE: target/xtensa/core-fsf/xtensa-modules.c:8738:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8783: FILE: target/xtensa/core-fsf/xtensa-modules.c:8739:
+^I^I    return 101; /* ssl */$

ERROR: code indent should never use tabs
#8784: FILE: target/xtensa/core-fsf/xtensa-modules.c:8740:
+^I^I  break;$

ERROR: code indent should never use tabs
#8785: FILE: target/xtensa/core-fsf/xtensa-modules.c:8741:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#8786: FILE: target/xtensa/core-fsf/xtensa-modules.c:8742:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8786: FILE: target/xtensa/core-fsf/xtensa-modules.c:8742:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8787: FILE: target/xtensa/core-fsf/xtensa-modules.c:8743:
+^I^I    return 102; /* ssa8l */$

ERROR: code indent should never use tabs
#8788: FILE: target/xtensa/core-fsf/xtensa-modules.c:8744:
+^I^I  break;$

ERROR: code indent should never use tabs
#8789: FILE: target/xtensa/core-fsf/xtensa-modules.c:8745:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#8790: FILE: target/xtensa/core-fsf/xtensa-modules.c:8746:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8790: FILE: target/xtensa/core-fsf/xtensa-modules.c:8746:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8791: FILE: target/xtensa/core-fsf/xtensa-modules.c:8747:
+^I^I    return 103; /* ssa8b */$

ERROR: code indent should never use tabs
#8792: FILE: target/xtensa/core-fsf/xtensa-modules.c:8748:
+^I^I  break;$

ERROR: code indent should never use tabs
#8793: FILE: target/xtensa/core-fsf/xtensa-modules.c:8749:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#8794: FILE: target/xtensa/core-fsf/xtensa-modules.c:8750:
+^I^I  if (Field_thi3_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8794: FILE: target/xtensa/core-fsf/xtensa-modules.c:8750:
+		  if (Field_thi3_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8795: FILE: target/xtensa/core-fsf/xtensa-modules.c:8751:
+^I^I    return 104; /* ssai */$

ERROR: code indent should never use tabs
#8796: FILE: target/xtensa/core-fsf/xtensa-modules.c:8752:
+^I^I  break;$

ERROR: code indent should never use tabs
#8797: FILE: target/xtensa/core-fsf/xtensa-modules.c:8753:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#8798: FILE: target/xtensa/core-fsf/xtensa-modules.c:8754:
+^I^I  if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8798: FILE: target/xtensa/core-fsf/xtensa-modules.c:8754:
+		  if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8799: FILE: target/xtensa/core-fsf/xtensa-modules.c:8755:
+^I^I    return 13; /* rotw */$

ERROR: code indent should never use tabs
#8800: FILE: target/xtensa/core-fsf/xtensa-modules.c:8756:
+^I^I  break;$

ERROR: code indent should never use tabs
#8801: FILE: target/xtensa/core-fsf/xtensa-modules.c:8757:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#8802: FILE: target/xtensa/core-fsf/xtensa-modules.c:8758:
+^I^I  return 289; /* nsa */$

ERROR: code indent should never use tabs
#8803: FILE: target/xtensa/core-fsf/xtensa-modules.c:8759:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#8804: FILE: target/xtensa/core-fsf/xtensa-modules.c:8760:
+^I^I  return 290; /* nsau */$

ERROR: code indent should never use tabs
#8805: FILE: target/xtensa/core-fsf/xtensa-modules.c:8761:
+^I^I}$

ERROR: code indent should never use tabs
#8806: FILE: target/xtensa/core-fsf/xtensa-modules.c:8762:
+^I      break;$

ERROR: code indent should never use tabs
#8807: FILE: target/xtensa/core-fsf/xtensa-modules.c:8763:
+^I    case 5:$

ERROR: code indent should never use tabs
#8808: FILE: target/xtensa/core-fsf/xtensa-modules.c:8764:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8808: FILE: target/xtensa/core-fsf/xtensa-modules.c:8764:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#8809: FILE: target/xtensa/core-fsf/xtensa-modules.c:8765:
+^I^I{$

ERROR: code indent should never use tabs
#8810: FILE: target/xtensa/core-fsf/xtensa-modules.c:8766:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#8811: FILE: target/xtensa/core-fsf/xtensa-modules.c:8767:
+^I^I  return 287; /* hwwitlba */$

ERROR: code indent should never use tabs
#8812: FILE: target/xtensa/core-fsf/xtensa-modules.c:8768:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#8813: FILE: target/xtensa/core-fsf/xtensa-modules.c:8769:
+^I^I  return 283; /* ritlb0 */$

ERROR: code indent should never use tabs
#8814: FILE: target/xtensa/core-fsf/xtensa-modules.c:8770:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#8815: FILE: target/xtensa/core-fsf/xtensa-modules.c:8771:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8815: FILE: target/xtensa/core-fsf/xtensa-modules.c:8771:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8816: FILE: target/xtensa/core-fsf/xtensa-modules.c:8772:
+^I^I    return 281; /* iitlb */$

ERROR: code indent should never use tabs
#8817: FILE: target/xtensa/core-fsf/xtensa-modules.c:8773:
+^I^I  break;$

ERROR: code indent should never use tabs
#8818: FILE: target/xtensa/core-fsf/xtensa-modules.c:8774:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#8819: FILE: target/xtensa/core-fsf/xtensa-modules.c:8775:
+^I^I  return 282; /* pitlb */$

ERROR: code indent should never use tabs
#8820: FILE: target/xtensa/core-fsf/xtensa-modules.c:8776:
+^I^Icase 6:$

ERROR: code indent should never use tabs
#8821: FILE: target/xtensa/core-fsf/xtensa-modules.c:8777:
+^I^I  return 285; /* witlb */$

ERROR: code indent should never use tabs
#8822: FILE: target/xtensa/core-fsf/xtensa-modules.c:8778:
+^I^Icase 7:$

ERROR: code indent should never use tabs
#8823: FILE: target/xtensa/core-fsf/xtensa-modules.c:8779:
+^I^I  return 284; /* ritlb1 */$

ERROR: code indent should never use tabs
#8824: FILE: target/xtensa/core-fsf/xtensa-modules.c:8780:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#8825: FILE: target/xtensa/core-fsf/xtensa-modules.c:8781:
+^I^I  return 288; /* hwwdtlba */$

ERROR: code indent should never use tabs
#8826: FILE: target/xtensa/core-fsf/xtensa-modules.c:8782:
+^I^Icase 11:$

ERROR: code indent should never use tabs
#8827: FILE: target/xtensa/core-fsf/xtensa-modules.c:8783:
+^I^I  return 278; /* rdtlb0 */$

ERROR: code indent should never use tabs
#8828: FILE: target/xtensa/core-fsf/xtensa-modules.c:8784:
+^I^Icase 12:$

ERROR: code indent should never use tabs
#8829: FILE: target/xtensa/core-fsf/xtensa-modules.c:8785:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8829: FILE: target/xtensa/core-fsf/xtensa-modules.c:8785:
+		  if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8830: FILE: target/xtensa/core-fsf/xtensa-modules.c:8786:
+^I^I    return 276; /* idtlb */$

ERROR: code indent should never use tabs
#8831: FILE: target/xtensa/core-fsf/xtensa-modules.c:8787:
+^I^I  break;$

ERROR: code indent should never use tabs
#8832: FILE: target/xtensa/core-fsf/xtensa-modules.c:8788:
+^I^Icase 13:$

ERROR: code indent should never use tabs
#8833: FILE: target/xtensa/core-fsf/xtensa-modules.c:8789:
+^I^I  return 277; /* pdtlb */$

ERROR: code indent should never use tabs
#8834: FILE: target/xtensa/core-fsf/xtensa-modules.c:8790:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#8835: FILE: target/xtensa/core-fsf/xtensa-modules.c:8791:
+^I^I  return 280; /* wdtlb */$

ERROR: code indent should never use tabs
#8836: FILE: target/xtensa/core-fsf/xtensa-modules.c:8792:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#8837: FILE: target/xtensa/core-fsf/xtensa-modules.c:8793:
+^I^I  return 279; /* rdtlb1 */$

ERROR: code indent should never use tabs
#8838: FILE: target/xtensa/core-fsf/xtensa-modules.c:8794:
+^I^I}$

ERROR: code indent should never use tabs
#8839: FILE: target/xtensa/core-fsf/xtensa-modules.c:8795:
+^I      break;$

ERROR: code indent should never use tabs
#8840: FILE: target/xtensa/core-fsf/xtensa-modules.c:8796:
+^I    case 6:$

ERROR: code indent should never use tabs
#8841: FILE: target/xtensa/core-fsf/xtensa-modules.c:8797:
+^I      switch (Field_s_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8841: FILE: target/xtensa/core-fsf/xtensa-modules.c:8797:
+	      switch (Field_s_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#8842: FILE: target/xtensa/core-fsf/xtensa-modules.c:8798:
+^I^I{$

ERROR: code indent should never use tabs
#8843: FILE: target/xtensa/core-fsf/xtensa-modules.c:8799:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#8844: FILE: target/xtensa/core-fsf/xtensa-modules.c:8800:
+^I^I  return 93; /* neg */$

ERROR: code indent should never use tabs
#8845: FILE: target/xtensa/core-fsf/xtensa-modules.c:8801:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#8846: FILE: target/xtensa/core-fsf/xtensa-modules.c:8802:
+^I^I  return 94; /* abs */$

ERROR: code indent should never use tabs
#8847: FILE: target/xtensa/core-fsf/xtensa-modules.c:8803:
+^I^I}$

ERROR: code indent should never use tabs
#8848: FILE: target/xtensa/core-fsf/xtensa-modules.c:8804:
+^I      break;$

ERROR: code indent should never use tabs
#8849: FILE: target/xtensa/core-fsf/xtensa-modules.c:8805:
+^I    case 8:$

ERROR: code indent should never use tabs
#8850: FILE: target/xtensa/core-fsf/xtensa-modules.c:8806:
+^I      return 39; /* add */$

ERROR: code indent should never use tabs
#8851: FILE: target/xtensa/core-fsf/xtensa-modules.c:8807:
+^I    case 9:$

ERROR: code indent should never use tabs
#8852: FILE: target/xtensa/core-fsf/xtensa-modules.c:8808:
+^I      return 41; /* addx2 */$

ERROR: code indent should never use tabs
#8853: FILE: target/xtensa/core-fsf/xtensa-modules.c:8809:
+^I    case 10:$

ERROR: code indent should never use tabs
#8854: FILE: target/xtensa/core-fsf/xtensa-modules.c:8810:
+^I      return 42; /* addx4 */$

ERROR: code indent should never use tabs
#8855: FILE: target/xtensa/core-fsf/xtensa-modules.c:8811:
+^I    case 11:$

ERROR: code indent should never use tabs
#8856: FILE: target/xtensa/core-fsf/xtensa-modules.c:8812:
+^I      return 43; /* addx8 */$

ERROR: code indent should never use tabs
#8857: FILE: target/xtensa/core-fsf/xtensa-modules.c:8813:
+^I    case 12:$

ERROR: code indent should never use tabs
#8858: FILE: target/xtensa/core-fsf/xtensa-modules.c:8814:
+^I      return 40; /* sub */$

ERROR: code indent should never use tabs
#8859: FILE: target/xtensa/core-fsf/xtensa-modules.c:8815:
+^I    case 13:$

ERROR: code indent should never use tabs
#8860: FILE: target/xtensa/core-fsf/xtensa-modules.c:8816:
+^I      return 44; /* subx2 */$

ERROR: code indent should never use tabs
#8861: FILE: target/xtensa/core-fsf/xtensa-modules.c:8817:
+^I    case 14:$

ERROR: code indent should never use tabs
#8862: FILE: target/xtensa/core-fsf/xtensa-modules.c:8818:
+^I      return 45; /* subx4 */$

ERROR: code indent should never use tabs
#8863: FILE: target/xtensa/core-fsf/xtensa-modules.c:8819:
+^I    case 15:$

ERROR: code indent should never use tabs
#8864: FILE: target/xtensa/core-fsf/xtensa-modules.c:8820:
+^I      return 46; /* subx8 */$

ERROR: code indent should never use tabs
#8865: FILE: target/xtensa/core-fsf/xtensa-modules.c:8821:
+^I    }$

ERROR: code indent should never use tabs
#8866: FILE: target/xtensa/core-fsf/xtensa-modules.c:8822:
+^I  break;$

ERROR: code indent should never use tabs
#8867: FILE: target/xtensa/core-fsf/xtensa-modules.c:8823:
+^Icase 1:$

ERROR: code indent should never use tabs
#8868: FILE: target/xtensa/core-fsf/xtensa-modules.c:8824:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8868: FILE: target/xtensa/core-fsf/xtensa-modules.c:8824:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#8869: FILE: target/xtensa/core-fsf/xtensa-modules.c:8825:
+^I    {$

ERROR: code indent should never use tabs
#8870: FILE: target/xtensa/core-fsf/xtensa-modules.c:8826:
+^I    case 0:$

ERROR: code indent should never use tabs
#8871: FILE: target/xtensa/core-fsf/xtensa-modules.c:8827:
+^I    case 1:$

ERROR: code indent should never use tabs
#8872: FILE: target/xtensa/core-fsf/xtensa-modules.c:8828:
+^I      return 109; /* slli */$

ERROR: code indent should never use tabs
#8873: FILE: target/xtensa/core-fsf/xtensa-modules.c:8829:
+^I    case 2:$

ERROR: code indent should never use tabs
#8874: FILE: target/xtensa/core-fsf/xtensa-modules.c:8830:
+^I    case 3:$

ERROR: code indent should never use tabs
#8875: FILE: target/xtensa/core-fsf/xtensa-modules.c:8831:
+^I      return 110; /* srai */$

ERROR: code indent should never use tabs
#8876: FILE: target/xtensa/core-fsf/xtensa-modules.c:8832:
+^I    case 4:$

ERROR: code indent should never use tabs
#8877: FILE: target/xtensa/core-fsf/xtensa-modules.c:8833:
+^I      return 111; /* srli */$

ERROR: code indent should never use tabs
#8878: FILE: target/xtensa/core-fsf/xtensa-modules.c:8834:
+^I    case 6:$

ERROR: code indent should never use tabs
#8879: FILE: target/xtensa/core-fsf/xtensa-modules.c:8835:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8879: FILE: target/xtensa/core-fsf/xtensa-modules.c:8835:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#8880: FILE: target/xtensa/core-fsf/xtensa-modules.c:8836:
+^I^I{$

ERROR: code indent should never use tabs
#8881: FILE: target/xtensa/core-fsf/xtensa-modules.c:8837:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#8882: FILE: target/xtensa/core-fsf/xtensa-modules.c:8838:
+^I^I  return 127; /* xsr.lbeg */$

ERROR: code indent should never use tabs
#8883: FILE: target/xtensa/core-fsf/xtensa-modules.c:8839:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#8884: FILE: target/xtensa/core-fsf/xtensa-modules.c:8840:
+^I^I  return 121; /* xsr.lend */$

ERROR: code indent should never use tabs
#8885: FILE: target/xtensa/core-fsf/xtensa-modules.c:8841:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#8886: FILE: target/xtensa/core-fsf/xtensa-modules.c:8842:
+^I^I  return 124; /* xsr.lcount */$

ERROR: code indent should never use tabs
#8887: FILE: target/xtensa/core-fsf/xtensa-modules.c:8843:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#8888: FILE: target/xtensa/core-fsf/xtensa-modules.c:8844:
+^I^I  return 130; /* xsr.sar */$

ERROR: code indent should never use tabs
#8889: FILE: target/xtensa/core-fsf/xtensa-modules.c:8845:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#8890: FILE: target/xtensa/core-fsf/xtensa-modules.c:8846:
+^I^I  return 133; /* xsr.litbase */$

ERROR: code indent should never use tabs
#8891: FILE: target/xtensa/core-fsf/xtensa-modules.c:8847:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#8892: FILE: target/xtensa/core-fsf/xtensa-modules.c:8848:
+^I^I  return 22; /* xsr.windowbase */$

ERROR: code indent should never use tabs
#8893: FILE: target/xtensa/core-fsf/xtensa-modules.c:8849:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#8894: FILE: target/xtensa/core-fsf/xtensa-modules.c:8850:
+^I^I  return 25; /* xsr.windowstart */$

ERROR: code indent should never use tabs
#8895: FILE: target/xtensa/core-fsf/xtensa-modules.c:8851:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#8896: FILE: target/xtensa/core-fsf/xtensa-modules.c:8852:
+^I^I  return 266; /* xsr.ptevaddr */$

ERROR: code indent should never use tabs
#8897: FILE: target/xtensa/core-fsf/xtensa-modules.c:8853:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#8898: FILE: target/xtensa/core-fsf/xtensa-modules.c:8854:
+^I^I  return 269; /* xsr.rasid */$

ERROR: code indent should never use tabs
#8899: FILE: target/xtensa/core-fsf/xtensa-modules.c:8855:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#8900: FILE: target/xtensa/core-fsf/xtensa-modules.c:8856:
+^I^I  return 272; /* xsr.itlbcfg */$

ERROR: code indent should never use tabs
#8901: FILE: target/xtensa/core-fsf/xtensa-modules.c:8857:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#8902: FILE: target/xtensa/core-fsf/xtensa-modules.c:8858:
+^I^I  return 275; /* xsr.dtlbcfg */$

ERROR: code indent should never use tabs
#8903: FILE: target/xtensa/core-fsf/xtensa-modules.c:8859:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#8904: FILE: target/xtensa/core-fsf/xtensa-modules.c:8860:
+^I^I  return 218; /* xsr.ibreakenable */$

ERROR: code indent should never use tabs
#8905: FILE: target/xtensa/core-fsf/xtensa-modules.c:8861:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#8906: FILE: target/xtensa/core-fsf/xtensa-modules.c:8862:
+^I^I  return 230; /* xsr.ddr */$

ERROR: code indent should never use tabs
#8907: FILE: target/xtensa/core-fsf/xtensa-modules.c:8863:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#8908: FILE: target/xtensa/core-fsf/xtensa-modules.c:8864:
+^I^I  return 212; /* xsr.ibreaka0 */$

ERROR: code indent should never use tabs
#8909: FILE: target/xtensa/core-fsf/xtensa-modules.c:8865:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#8910: FILE: target/xtensa/core-fsf/xtensa-modules.c:8866:
+^I^I  return 215; /* xsr.ibreaka1 */$

ERROR: code indent should never use tabs
#8911: FILE: target/xtensa/core-fsf/xtensa-modules.c:8867:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#8912: FILE: target/xtensa/core-fsf/xtensa-modules.c:8868:
+^I^I  return 200; /* xsr.dbreaka0 */$

ERROR: code indent should never use tabs
#8913: FILE: target/xtensa/core-fsf/xtensa-modules.c:8869:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#8914: FILE: target/xtensa/core-fsf/xtensa-modules.c:8870:
+^I^I  return 206; /* xsr.dbreaka1 */$

ERROR: code indent should never use tabs
#8915: FILE: target/xtensa/core-fsf/xtensa-modules.c:8871:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#8916: FILE: target/xtensa/core-fsf/xtensa-modules.c:8872:
+^I^I  return 203; /* xsr.dbreakc0 */$

ERROR: code indent should never use tabs
#8917: FILE: target/xtensa/core-fsf/xtensa-modules.c:8873:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#8918: FILE: target/xtensa/core-fsf/xtensa-modules.c:8874:
+^I^I  return 209; /* xsr.dbreakc1 */$

ERROR: code indent should never use tabs
#8919: FILE: target/xtensa/core-fsf/xtensa-modules.c:8875:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#8920: FILE: target/xtensa/core-fsf/xtensa-modules.c:8876:
+^I^I  return 141; /* xsr.epc1 */$

ERROR: code indent should never use tabs
#8921: FILE: target/xtensa/core-fsf/xtensa-modules.c:8877:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#8922: FILE: target/xtensa/core-fsf/xtensa-modules.c:8878:
+^I^I  return 147; /* xsr.epc2 */$

ERROR: code indent should never use tabs
#8923: FILE: target/xtensa/core-fsf/xtensa-modules.c:8879:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#8924: FILE: target/xtensa/core-fsf/xtensa-modules.c:8880:
+^I^I  return 153; /* xsr.epc3 */$

ERROR: code indent should never use tabs
#8925: FILE: target/xtensa/core-fsf/xtensa-modules.c:8881:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#8926: FILE: target/xtensa/core-fsf/xtensa-modules.c:8882:
+^I^I  return 159; /* xsr.epc4 */$

ERROR: code indent should never use tabs
#8927: FILE: target/xtensa/core-fsf/xtensa-modules.c:8883:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#8928: FILE: target/xtensa/core-fsf/xtensa-modules.c:8884:
+^I^I  return 177; /* xsr.depc */$

ERROR: code indent should never use tabs
#8929: FILE: target/xtensa/core-fsf/xtensa-modules.c:8885:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#8930: FILE: target/xtensa/core-fsf/xtensa-modules.c:8886:
+^I^I  return 165; /* xsr.eps2 */$

ERROR: code indent should never use tabs
#8931: FILE: target/xtensa/core-fsf/xtensa-modules.c:8887:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#8932: FILE: target/xtensa/core-fsf/xtensa-modules.c:8888:
+^I^I  return 168; /* xsr.eps3 */$

ERROR: code indent should never use tabs
#8933: FILE: target/xtensa/core-fsf/xtensa-modules.c:8889:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#8934: FILE: target/xtensa/core-fsf/xtensa-modules.c:8890:
+^I^I  return 171; /* xsr.eps4 */$

ERROR: code indent should never use tabs
#8935: FILE: target/xtensa/core-fsf/xtensa-modules.c:8891:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#8936: FILE: target/xtensa/core-fsf/xtensa-modules.c:8892:
+^I^I  return 144; /* xsr.excsave1 */$

ERROR: code indent should never use tabs
#8937: FILE: target/xtensa/core-fsf/xtensa-modules.c:8893:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#8938: FILE: target/xtensa/core-fsf/xtensa-modules.c:8894:
+^I^I  return 150; /* xsr.excsave2 */$

ERROR: code indent should never use tabs
#8939: FILE: target/xtensa/core-fsf/xtensa-modules.c:8895:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#8940: FILE: target/xtensa/core-fsf/xtensa-modules.c:8896:
+^I^I  return 156; /* xsr.excsave3 */$

ERROR: code indent should never use tabs
#8941: FILE: target/xtensa/core-fsf/xtensa-modules.c:8897:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#8942: FILE: target/xtensa/core-fsf/xtensa-modules.c:8898:
+^I^I  return 162; /* xsr.excsave4 */$

ERROR: code indent should never use tabs
#8943: FILE: target/xtensa/core-fsf/xtensa-modules.c:8899:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#8944: FILE: target/xtensa/core-fsf/xtensa-modules.c:8900:
+^I^I  return 195; /* xsr.intenable */$

ERROR: code indent should never use tabs
#8945: FILE: target/xtensa/core-fsf/xtensa-modules.c:8901:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#8946: FILE: target/xtensa/core-fsf/xtensa-modules.c:8902:
+^I^I  return 138; /* xsr.ps */$

ERROR: code indent should never use tabs
#8947: FILE: target/xtensa/core-fsf/xtensa-modules.c:8903:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#8948: FILE: target/xtensa/core-fsf/xtensa-modules.c:8904:
+^I^I  return 180; /* xsr.exccause */$

ERROR: code indent should never use tabs
#8949: FILE: target/xtensa/core-fsf/xtensa-modules.c:8905:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#8950: FILE: target/xtensa/core-fsf/xtensa-modules.c:8906:
+^I^I  return 221; /* xsr.debugcause */$

ERROR: code indent should never use tabs
#8951: FILE: target/xtensa/core-fsf/xtensa-modules.c:8907:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#8952: FILE: target/xtensa/core-fsf/xtensa-modules.c:8908:
+^I^I  return 235; /* xsr.ccount */$

ERROR: code indent should never use tabs
#8953: FILE: target/xtensa/core-fsf/xtensa-modules.c:8909:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#8954: FILE: target/xtensa/core-fsf/xtensa-modules.c:8910:
+^I^I  return 224; /* xsr.icount */$

ERROR: code indent should never use tabs
#8955: FILE: target/xtensa/core-fsf/xtensa-modules.c:8911:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#8956: FILE: target/xtensa/core-fsf/xtensa-modules.c:8912:
+^I^I  return 227; /* xsr.icountlevel */$

ERROR: code indent should never use tabs
#8957: FILE: target/xtensa/core-fsf/xtensa-modules.c:8913:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#8958: FILE: target/xtensa/core-fsf/xtensa-modules.c:8914:
+^I^I  return 174; /* xsr.excvaddr */$

ERROR: code indent should never use tabs
#8959: FILE: target/xtensa/core-fsf/xtensa-modules.c:8915:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#8960: FILE: target/xtensa/core-fsf/xtensa-modules.c:8916:
+^I^I  return 238; /* xsr.ccompare0 */$

ERROR: code indent should never use tabs
#8961: FILE: target/xtensa/core-fsf/xtensa-modules.c:8917:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#8962: FILE: target/xtensa/core-fsf/xtensa-modules.c:8918:
+^I^I  return 241; /* xsr.ccompare1 */$

ERROR: code indent should never use tabs
#8963: FILE: target/xtensa/core-fsf/xtensa-modules.c:8919:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#8964: FILE: target/xtensa/core-fsf/xtensa-modules.c:8920:
+^I^I  return 244; /* xsr.ccompare2 */$

ERROR: code indent should never use tabs
#8965: FILE: target/xtensa/core-fsf/xtensa-modules.c:8921:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#8966: FILE: target/xtensa/core-fsf/xtensa-modules.c:8922:
+^I^I  return 183; /* xsr.misc0 */$

ERROR: code indent should never use tabs
#8967: FILE: target/xtensa/core-fsf/xtensa-modules.c:8923:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#8968: FILE: target/xtensa/core-fsf/xtensa-modules.c:8924:
+^I^I  return 186; /* xsr.misc1 */$

ERROR: code indent should never use tabs
#8969: FILE: target/xtensa/core-fsf/xtensa-modules.c:8925:
+^I^I}$

ERROR: code indent should never use tabs
#8970: FILE: target/xtensa/core-fsf/xtensa-modules.c:8926:
+^I      break;$

ERROR: code indent should never use tabs
#8971: FILE: target/xtensa/core-fsf/xtensa-modules.c:8927:
+^I    case 8:$

ERROR: code indent should never use tabs
#8972: FILE: target/xtensa/core-fsf/xtensa-modules.c:8928:
+^I      return 106; /* src */$

ERROR: code indent should never use tabs
#8973: FILE: target/xtensa/core-fsf/xtensa-modules.c:8929:
+^I    case 9:$

ERROR: code indent should never use tabs
#8974: FILE: target/xtensa/core-fsf/xtensa-modules.c:8930:
+^I      if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8974: FILE: target/xtensa/core-fsf/xtensa-modules.c:8930:
+	      if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8975: FILE: target/xtensa/core-fsf/xtensa-modules.c:8931:
+^I^Ireturn 107; /* srl */$

ERROR: code indent should never use tabs
#8976: FILE: target/xtensa/core-fsf/xtensa-modules.c:8932:
+^I      break;$

ERROR: code indent should never use tabs
#8977: FILE: target/xtensa/core-fsf/xtensa-modules.c:8933:
+^I    case 10:$

ERROR: code indent should never use tabs
#8978: FILE: target/xtensa/core-fsf/xtensa-modules.c:8934:
+^I      if (Field_t_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8978: FILE: target/xtensa/core-fsf/xtensa-modules.c:8934:
+	      if (Field_t_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8979: FILE: target/xtensa/core-fsf/xtensa-modules.c:8935:
+^I^Ireturn 105; /* sll */$

ERROR: code indent should never use tabs
#8980: FILE: target/xtensa/core-fsf/xtensa-modules.c:8936:
+^I      break;$

ERROR: code indent should never use tabs
#8981: FILE: target/xtensa/core-fsf/xtensa-modules.c:8937:
+^I    case 11:$

ERROR: code indent should never use tabs
#8982: FILE: target/xtensa/core-fsf/xtensa-modules.c:8938:
+^I      if (Field_s_Slot_inst_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#8982: FILE: target/xtensa/core-fsf/xtensa-modules.c:8938:
+	      if (Field_s_Slot_inst_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#8983: FILE: target/xtensa/core-fsf/xtensa-modules.c:8939:
+^I^Ireturn 108; /* sra */$

ERROR: code indent should never use tabs
#8984: FILE: target/xtensa/core-fsf/xtensa-modules.c:8940:
+^I      break;$

ERROR: code indent should never use tabs
#8985: FILE: target/xtensa/core-fsf/xtensa-modules.c:8941:
+^I    case 15:$

ERROR: code indent should never use tabs
#8986: FILE: target/xtensa/core-fsf/xtensa-modules.c:8942:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#8986: FILE: target/xtensa/core-fsf/xtensa-modules.c:8942:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#8987: FILE: target/xtensa/core-fsf/xtensa-modules.c:8943:
+^I^I{$

ERROR: code indent should never use tabs
#8988: FILE: target/xtensa/core-fsf/xtensa-modules.c:8944:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#8989: FILE: target/xtensa/core-fsf/xtensa-modules.c:8945:
+^I^I  return 248; /* lict */$

ERROR: code indent should never use tabs
#8990: FILE: target/xtensa/core-fsf/xtensa-modules.c:8946:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#8991: FILE: target/xtensa/core-fsf/xtensa-modules.c:8947:
+^I^I  return 250; /* sict */$

ERROR: code indent should never use tabs
#8992: FILE: target/xtensa/core-fsf/xtensa-modules.c:8948:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#8993: FILE: target/xtensa/core-fsf/xtensa-modules.c:8949:
+^I^I  return 249; /* licw */$

ERROR: code indent should never use tabs
#8994: FILE: target/xtensa/core-fsf/xtensa-modules.c:8950:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#8995: FILE: target/xtensa/core-fsf/xtensa-modules.c:8951:
+^I^I  return 251; /* sicw */$

ERROR: code indent should never use tabs
#8996: FILE: target/xtensa/core-fsf/xtensa-modules.c:8952:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#8997: FILE: target/xtensa/core-fsf/xtensa-modules.c:8953:
+^I^I  return 263; /* ldct */$

ERROR: code indent should never use tabs
#8998: FILE: target/xtensa/core-fsf/xtensa-modules.c:8954:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#8999: FILE: target/xtensa/core-fsf/xtensa-modules.c:8955:
+^I^I  return 262; /* sdct */$

ERROR: code indent should never use tabs
#9000: FILE: target/xtensa/core-fsf/xtensa-modules.c:8956:
+^I^Icase 14:$

ERROR: code indent should never use tabs
#9001: FILE: target/xtensa/core-fsf/xtensa-modules.c:8957:
+^I^I  if (Field_t_Slot_inst_get (insn) == 0 &&$

ERROR: braces {} are necessary for all arms of this statement
#9001: FILE: target/xtensa/core-fsf/xtensa-modules.c:8957:
+		  if (Field_t_Slot_inst_get (insn) == 0 &&
[...]

ERROR: code indent should never use tabs
#9002: FILE: target/xtensa/core-fsf/xtensa-modules.c:8958:
+^I^I      Field_s_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#9003: FILE: target/xtensa/core-fsf/xtensa-modules.c:8959:
+^I^I    return 231; /* rfdo */$

ERROR: code indent should never use tabs
#9004: FILE: target/xtensa/core-fsf/xtensa-modules.c:8960:
+^I^I  if (Field_t_Slot_inst_get (insn) == 1 &&$

ERROR: braces {} are necessary for all arms of this statement
#9004: FILE: target/xtensa/core-fsf/xtensa-modules.c:8960:
+		  if (Field_t_Slot_inst_get (insn) == 1 &&
[...]

ERROR: code indent should never use tabs
#9005: FILE: target/xtensa/core-fsf/xtensa-modules.c:8961:
+^I^I      Field_s_Slot_inst_get (insn) == 0)$

ERROR: code indent should never use tabs
#9006: FILE: target/xtensa/core-fsf/xtensa-modules.c:8962:
+^I^I    return 232; /* rfdd */$

ERROR: code indent should never use tabs
#9007: FILE: target/xtensa/core-fsf/xtensa-modules.c:8963:
+^I^I  break;$

ERROR: code indent should never use tabs
#9008: FILE: target/xtensa/core-fsf/xtensa-modules.c:8964:
+^I^Icase 15:$

ERROR: code indent should never use tabs
#9009: FILE: target/xtensa/core-fsf/xtensa-modules.c:8965:
+^I^I  return 286; /* ldpte */$

ERROR: code indent should never use tabs
#9010: FILE: target/xtensa/core-fsf/xtensa-modules.c:8966:
+^I^I}$

ERROR: code indent should never use tabs
#9011: FILE: target/xtensa/core-fsf/xtensa-modules.c:8967:
+^I      break;$

ERROR: code indent should never use tabs
#9012: FILE: target/xtensa/core-fsf/xtensa-modules.c:8968:
+^I    }$

ERROR: code indent should never use tabs
#9013: FILE: target/xtensa/core-fsf/xtensa-modules.c:8969:
+^I  break;$

ERROR: code indent should never use tabs
#9014: FILE: target/xtensa/core-fsf/xtensa-modules.c:8970:
+^Icase 3:$

ERROR: code indent should never use tabs
#9015: FILE: target/xtensa/core-fsf/xtensa-modules.c:8971:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9015: FILE: target/xtensa/core-fsf/xtensa-modules.c:8971:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#9016: FILE: target/xtensa/core-fsf/xtensa-modules.c:8972:
+^I    {$

ERROR: code indent should never use tabs
#9017: FILE: target/xtensa/core-fsf/xtensa-modules.c:8973:
+^I    case 0:$

ERROR: code indent should never use tabs
#9018: FILE: target/xtensa/core-fsf/xtensa-modules.c:8974:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9018: FILE: target/xtensa/core-fsf/xtensa-modules.c:8974:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#9019: FILE: target/xtensa/core-fsf/xtensa-modules.c:8975:
+^I^I{$

ERROR: code indent should never use tabs
#9020: FILE: target/xtensa/core-fsf/xtensa-modules.c:8976:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#9021: FILE: target/xtensa/core-fsf/xtensa-modules.c:8977:
+^I^I  return 125; /* rsr.lbeg */$

ERROR: code indent should never use tabs
#9022: FILE: target/xtensa/core-fsf/xtensa-modules.c:8978:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#9023: FILE: target/xtensa/core-fsf/xtensa-modules.c:8979:
+^I^I  return 119; /* rsr.lend */$

ERROR: code indent should never use tabs
#9024: FILE: target/xtensa/core-fsf/xtensa-modules.c:8980:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#9025: FILE: target/xtensa/core-fsf/xtensa-modules.c:8981:
+^I^I  return 122; /* rsr.lcount */$

ERROR: code indent should never use tabs
#9026: FILE: target/xtensa/core-fsf/xtensa-modules.c:8982:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#9027: FILE: target/xtensa/core-fsf/xtensa-modules.c:8983:
+^I^I  return 128; /* rsr.sar */$

ERROR: code indent should never use tabs
#9028: FILE: target/xtensa/core-fsf/xtensa-modules.c:8984:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#9029: FILE: target/xtensa/core-fsf/xtensa-modules.c:8985:
+^I^I  return 131; /* rsr.litbase */$

ERROR: code indent should never use tabs
#9030: FILE: target/xtensa/core-fsf/xtensa-modules.c:8986:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#9031: FILE: target/xtensa/core-fsf/xtensa-modules.c:8987:
+^I^I  return 20; /* rsr.windowbase */$

ERROR: code indent should never use tabs
#9032: FILE: target/xtensa/core-fsf/xtensa-modules.c:8988:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#9033: FILE: target/xtensa/core-fsf/xtensa-modules.c:8989:
+^I^I  return 23; /* rsr.windowstart */$

ERROR: code indent should never use tabs
#9034: FILE: target/xtensa/core-fsf/xtensa-modules.c:8990:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#9035: FILE: target/xtensa/core-fsf/xtensa-modules.c:8991:
+^I^I  return 265; /* rsr.ptevaddr */$

ERROR: code indent should never use tabs
#9036: FILE: target/xtensa/core-fsf/xtensa-modules.c:8992:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#9037: FILE: target/xtensa/core-fsf/xtensa-modules.c:8993:
+^I^I  return 267; /* rsr.rasid */$

ERROR: code indent should never use tabs
#9038: FILE: target/xtensa/core-fsf/xtensa-modules.c:8994:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#9039: FILE: target/xtensa/core-fsf/xtensa-modules.c:8995:
+^I^I  return 270; /* rsr.itlbcfg */$

ERROR: code indent should never use tabs
#9040: FILE: target/xtensa/core-fsf/xtensa-modules.c:8996:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#9041: FILE: target/xtensa/core-fsf/xtensa-modules.c:8997:
+^I^I  return 273; /* rsr.dtlbcfg */$

ERROR: code indent should never use tabs
#9042: FILE: target/xtensa/core-fsf/xtensa-modules.c:8998:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#9043: FILE: target/xtensa/core-fsf/xtensa-modules.c:8999:
+^I^I  return 216; /* rsr.ibreakenable */$

ERROR: code indent should never use tabs
#9044: FILE: target/xtensa/core-fsf/xtensa-modules.c:9000:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#9045: FILE: target/xtensa/core-fsf/xtensa-modules.c:9001:
+^I^I  return 228; /* rsr.ddr */$

ERROR: code indent should never use tabs
#9046: FILE: target/xtensa/core-fsf/xtensa-modules.c:9002:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#9047: FILE: target/xtensa/core-fsf/xtensa-modules.c:9003:
+^I^I  return 210; /* rsr.ibreaka0 */$

ERROR: code indent should never use tabs
#9048: FILE: target/xtensa/core-fsf/xtensa-modules.c:9004:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#9049: FILE: target/xtensa/core-fsf/xtensa-modules.c:9005:
+^I^I  return 213; /* rsr.ibreaka1 */$

ERROR: code indent should never use tabs
#9050: FILE: target/xtensa/core-fsf/xtensa-modules.c:9006:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#9051: FILE: target/xtensa/core-fsf/xtensa-modules.c:9007:
+^I^I  return 198; /* rsr.dbreaka0 */$

ERROR: code indent should never use tabs
#9052: FILE: target/xtensa/core-fsf/xtensa-modules.c:9008:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#9053: FILE: target/xtensa/core-fsf/xtensa-modules.c:9009:
+^I^I  return 204; /* rsr.dbreaka1 */$

ERROR: code indent should never use tabs
#9054: FILE: target/xtensa/core-fsf/xtensa-modules.c:9010:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#9055: FILE: target/xtensa/core-fsf/xtensa-modules.c:9011:
+^I^I  return 201; /* rsr.dbreakc0 */$

ERROR: code indent should never use tabs
#9056: FILE: target/xtensa/core-fsf/xtensa-modules.c:9012:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#9057: FILE: target/xtensa/core-fsf/xtensa-modules.c:9013:
+^I^I  return 207; /* rsr.dbreakc1 */$

ERROR: code indent should never use tabs
#9058: FILE: target/xtensa/core-fsf/xtensa-modules.c:9014:
+^I^Icase 176:$

ERROR: code indent should never use tabs
#9059: FILE: target/xtensa/core-fsf/xtensa-modules.c:9015:
+^I^I  return 134; /* rsr.176 */$

ERROR: code indent should never use tabs
#9060: FILE: target/xtensa/core-fsf/xtensa-modules.c:9016:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#9061: FILE: target/xtensa/core-fsf/xtensa-modules.c:9017:
+^I^I  return 139; /* rsr.epc1 */$

ERROR: code indent should never use tabs
#9062: FILE: target/xtensa/core-fsf/xtensa-modules.c:9018:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#9063: FILE: target/xtensa/core-fsf/xtensa-modules.c:9019:
+^I^I  return 145; /* rsr.epc2 */$

ERROR: code indent should never use tabs
#9064: FILE: target/xtensa/core-fsf/xtensa-modules.c:9020:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#9065: FILE: target/xtensa/core-fsf/xtensa-modules.c:9021:
+^I^I  return 151; /* rsr.epc3 */$

ERROR: code indent should never use tabs
#9066: FILE: target/xtensa/core-fsf/xtensa-modules.c:9022:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#9067: FILE: target/xtensa/core-fsf/xtensa-modules.c:9023:
+^I^I  return 157; /* rsr.epc4 */$

ERROR: code indent should never use tabs
#9068: FILE: target/xtensa/core-fsf/xtensa-modules.c:9024:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#9069: FILE: target/xtensa/core-fsf/xtensa-modules.c:9025:
+^I^I  return 175; /* rsr.depc */$

ERROR: code indent should never use tabs
#9070: FILE: target/xtensa/core-fsf/xtensa-modules.c:9026:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#9071: FILE: target/xtensa/core-fsf/xtensa-modules.c:9027:
+^I^I  return 163; /* rsr.eps2 */$

ERROR: code indent should never use tabs
#9072: FILE: target/xtensa/core-fsf/xtensa-modules.c:9028:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#9073: FILE: target/xtensa/core-fsf/xtensa-modules.c:9029:
+^I^I  return 166; /* rsr.eps3 */$

ERROR: code indent should never use tabs
#9074: FILE: target/xtensa/core-fsf/xtensa-modules.c:9030:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#9075: FILE: target/xtensa/core-fsf/xtensa-modules.c:9031:
+^I^I  return 169; /* rsr.eps4 */$

ERROR: code indent should never use tabs
#9076: FILE: target/xtensa/core-fsf/xtensa-modules.c:9032:
+^I^Icase 208:$

ERROR: code indent should never use tabs
#9077: FILE: target/xtensa/core-fsf/xtensa-modules.c:9033:
+^I^I  return 135; /* rsr.208 */$

ERROR: code indent should never use tabs
#9078: FILE: target/xtensa/core-fsf/xtensa-modules.c:9034:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#9079: FILE: target/xtensa/core-fsf/xtensa-modules.c:9035:
+^I^I  return 142; /* rsr.excsave1 */$

ERROR: code indent should never use tabs
#9080: FILE: target/xtensa/core-fsf/xtensa-modules.c:9036:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#9081: FILE: target/xtensa/core-fsf/xtensa-modules.c:9037:
+^I^I  return 148; /* rsr.excsave2 */$

ERROR: code indent should never use tabs
#9082: FILE: target/xtensa/core-fsf/xtensa-modules.c:9038:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#9083: FILE: target/xtensa/core-fsf/xtensa-modules.c:9039:
+^I^I  return 154; /* rsr.excsave3 */$

ERROR: code indent should never use tabs
#9084: FILE: target/xtensa/core-fsf/xtensa-modules.c:9040:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#9085: FILE: target/xtensa/core-fsf/xtensa-modules.c:9041:
+^I^I  return 160; /* rsr.excsave4 */$

ERROR: code indent should never use tabs
#9086: FILE: target/xtensa/core-fsf/xtensa-modules.c:9042:
+^I^Icase 226:$

ERROR: code indent should never use tabs
#9087: FILE: target/xtensa/core-fsf/xtensa-modules.c:9043:
+^I^I  return 190; /* rsr.interrupt */$

ERROR: code indent should never use tabs
#9088: FILE: target/xtensa/core-fsf/xtensa-modules.c:9044:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#9089: FILE: target/xtensa/core-fsf/xtensa-modules.c:9045:
+^I^I  return 193; /* rsr.intenable */$

ERROR: code indent should never use tabs
#9090: FILE: target/xtensa/core-fsf/xtensa-modules.c:9046:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#9091: FILE: target/xtensa/core-fsf/xtensa-modules.c:9047:
+^I^I  return 136; /* rsr.ps */$

ERROR: code indent should never use tabs
#9092: FILE: target/xtensa/core-fsf/xtensa-modules.c:9048:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#9093: FILE: target/xtensa/core-fsf/xtensa-modules.c:9049:
+^I^I  return 178; /* rsr.exccause */$

ERROR: code indent should never use tabs
#9094: FILE: target/xtensa/core-fsf/xtensa-modules.c:9050:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#9095: FILE: target/xtensa/core-fsf/xtensa-modules.c:9051:
+^I^I  return 219; /* rsr.debugcause */$

ERROR: code indent should never use tabs
#9096: FILE: target/xtensa/core-fsf/xtensa-modules.c:9052:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#9097: FILE: target/xtensa/core-fsf/xtensa-modules.c:9053:
+^I^I  return 233; /* rsr.ccount */$

ERROR: code indent should never use tabs
#9098: FILE: target/xtensa/core-fsf/xtensa-modules.c:9054:
+^I^Icase 235:$

ERROR: code indent should never use tabs
#9099: FILE: target/xtensa/core-fsf/xtensa-modules.c:9055:
+^I^I  return 187; /* rsr.prid */$

ERROR: code indent should never use tabs
#9100: FILE: target/xtensa/core-fsf/xtensa-modules.c:9056:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#9101: FILE: target/xtensa/core-fsf/xtensa-modules.c:9057:
+^I^I  return 222; /* rsr.icount */$

ERROR: code indent should never use tabs
#9102: FILE: target/xtensa/core-fsf/xtensa-modules.c:9058:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#9103: FILE: target/xtensa/core-fsf/xtensa-modules.c:9059:
+^I^I  return 225; /* rsr.icountlevel */$

ERROR: code indent should never use tabs
#9104: FILE: target/xtensa/core-fsf/xtensa-modules.c:9060:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#9105: FILE: target/xtensa/core-fsf/xtensa-modules.c:9061:
+^I^I  return 172; /* rsr.excvaddr */$

ERROR: code indent should never use tabs
#9106: FILE: target/xtensa/core-fsf/xtensa-modules.c:9062:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#9107: FILE: target/xtensa/core-fsf/xtensa-modules.c:9063:
+^I^I  return 236; /* rsr.ccompare0 */$

ERROR: code indent should never use tabs
#9108: FILE: target/xtensa/core-fsf/xtensa-modules.c:9064:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#9109: FILE: target/xtensa/core-fsf/xtensa-modules.c:9065:
+^I^I  return 239; /* rsr.ccompare1 */$

ERROR: code indent should never use tabs
#9110: FILE: target/xtensa/core-fsf/xtensa-modules.c:9066:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#9111: FILE: target/xtensa/core-fsf/xtensa-modules.c:9067:
+^I^I  return 242; /* rsr.ccompare2 */$

ERROR: code indent should never use tabs
#9112: FILE: target/xtensa/core-fsf/xtensa-modules.c:9068:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#9113: FILE: target/xtensa/core-fsf/xtensa-modules.c:9069:
+^I^I  return 181; /* rsr.misc0 */$

ERROR: code indent should never use tabs
#9114: FILE: target/xtensa/core-fsf/xtensa-modules.c:9070:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#9115: FILE: target/xtensa/core-fsf/xtensa-modules.c:9071:
+^I^I  return 184; /* rsr.misc1 */$

ERROR: code indent should never use tabs
#9116: FILE: target/xtensa/core-fsf/xtensa-modules.c:9072:
+^I^I}$

ERROR: code indent should never use tabs
#9117: FILE: target/xtensa/core-fsf/xtensa-modules.c:9073:
+^I      break;$

ERROR: code indent should never use tabs
#9118: FILE: target/xtensa/core-fsf/xtensa-modules.c:9074:
+^I    case 1:$

ERROR: code indent should never use tabs
#9119: FILE: target/xtensa/core-fsf/xtensa-modules.c:9075:
+^I      switch (Field_sr_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9119: FILE: target/xtensa/core-fsf/xtensa-modules.c:9075:
+	      switch (Field_sr_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#9120: FILE: target/xtensa/core-fsf/xtensa-modules.c:9076:
+^I^I{$

ERROR: code indent should never use tabs
#9121: FILE: target/xtensa/core-fsf/xtensa-modules.c:9077:
+^I^Icase 0:$

ERROR: code indent should never use tabs
#9122: FILE: target/xtensa/core-fsf/xtensa-modules.c:9078:
+^I^I  return 126; /* wsr.lbeg */$

ERROR: code indent should never use tabs
#9123: FILE: target/xtensa/core-fsf/xtensa-modules.c:9079:
+^I^Icase 1:$

ERROR: code indent should never use tabs
#9124: FILE: target/xtensa/core-fsf/xtensa-modules.c:9080:
+^I^I  return 120; /* wsr.lend */$

ERROR: code indent should never use tabs
#9125: FILE: target/xtensa/core-fsf/xtensa-modules.c:9081:
+^I^Icase 2:$

ERROR: code indent should never use tabs
#9126: FILE: target/xtensa/core-fsf/xtensa-modules.c:9082:
+^I^I  return 123; /* wsr.lcount */$

ERROR: code indent should never use tabs
#9127: FILE: target/xtensa/core-fsf/xtensa-modules.c:9083:
+^I^Icase 3:$

ERROR: code indent should never use tabs
#9128: FILE: target/xtensa/core-fsf/xtensa-modules.c:9084:
+^I^I  return 129; /* wsr.sar */$

ERROR: code indent should never use tabs
#9129: FILE: target/xtensa/core-fsf/xtensa-modules.c:9085:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#9130: FILE: target/xtensa/core-fsf/xtensa-modules.c:9086:
+^I^I  return 132; /* wsr.litbase */$

ERROR: code indent should never use tabs
#9131: FILE: target/xtensa/core-fsf/xtensa-modules.c:9087:
+^I^Icase 72:$

ERROR: code indent should never use tabs
#9132: FILE: target/xtensa/core-fsf/xtensa-modules.c:9088:
+^I^I  return 21; /* wsr.windowbase */$

ERROR: code indent should never use tabs
#9133: FILE: target/xtensa/core-fsf/xtensa-modules.c:9089:
+^I^Icase 73:$

ERROR: code indent should never use tabs
#9134: FILE: target/xtensa/core-fsf/xtensa-modules.c:9090:
+^I^I  return 24; /* wsr.windowstart */$

ERROR: code indent should never use tabs
#9135: FILE: target/xtensa/core-fsf/xtensa-modules.c:9091:
+^I^Icase 83:$

ERROR: code indent should never use tabs
#9136: FILE: target/xtensa/core-fsf/xtensa-modules.c:9092:
+^I^I  return 264; /* wsr.ptevaddr */$

ERROR: code indent should never use tabs
#9137: FILE: target/xtensa/core-fsf/xtensa-modules.c:9093:
+^I^Icase 90:$

ERROR: code indent should never use tabs
#9138: FILE: target/xtensa/core-fsf/xtensa-modules.c:9094:
+^I^I  return 268; /* wsr.rasid */$

ERROR: code indent should never use tabs
#9139: FILE: target/xtensa/core-fsf/xtensa-modules.c:9095:
+^I^Icase 91:$

ERROR: code indent should never use tabs
#9140: FILE: target/xtensa/core-fsf/xtensa-modules.c:9096:
+^I^I  return 271; /* wsr.itlbcfg */$

ERROR: code indent should never use tabs
#9141: FILE: target/xtensa/core-fsf/xtensa-modules.c:9097:
+^I^Icase 92:$

ERROR: code indent should never use tabs
#9142: FILE: target/xtensa/core-fsf/xtensa-modules.c:9098:
+^I^I  return 274; /* wsr.dtlbcfg */$

ERROR: code indent should never use tabs
#9143: FILE: target/xtensa/core-fsf/xtensa-modules.c:9099:
+^I^Icase 96:$

ERROR: code indent should never use tabs
#9144: FILE: target/xtensa/core-fsf/xtensa-modules.c:9100:
+^I^I  return 217; /* wsr.ibreakenable */$

ERROR: code indent should never use tabs
#9145: FILE: target/xtensa/core-fsf/xtensa-modules.c:9101:
+^I^Icase 104:$

ERROR: code indent should never use tabs
#9146: FILE: target/xtensa/core-fsf/xtensa-modules.c:9102:
+^I^I  return 229; /* wsr.ddr */$

ERROR: code indent should never use tabs
#9147: FILE: target/xtensa/core-fsf/xtensa-modules.c:9103:
+^I^Icase 128:$

ERROR: code indent should never use tabs
#9148: FILE: target/xtensa/core-fsf/xtensa-modules.c:9104:
+^I^I  return 211; /* wsr.ibreaka0 */$

ERROR: code indent should never use tabs
#9149: FILE: target/xtensa/core-fsf/xtensa-modules.c:9105:
+^I^Icase 129:$

ERROR: code indent should never use tabs
#9150: FILE: target/xtensa/core-fsf/xtensa-modules.c:9106:
+^I^I  return 214; /* wsr.ibreaka1 */$

ERROR: code indent should never use tabs
#9151: FILE: target/xtensa/core-fsf/xtensa-modules.c:9107:
+^I^Icase 144:$

ERROR: code indent should never use tabs
#9152: FILE: target/xtensa/core-fsf/xtensa-modules.c:9108:
+^I^I  return 199; /* wsr.dbreaka0 */$

ERROR: code indent should never use tabs
#9153: FILE: target/xtensa/core-fsf/xtensa-modules.c:9109:
+^I^Icase 145:$

ERROR: code indent should never use tabs
#9154: FILE: target/xtensa/core-fsf/xtensa-modules.c:9110:
+^I^I  return 205; /* wsr.dbreaka1 */$

ERROR: code indent should never use tabs
#9155: FILE: target/xtensa/core-fsf/xtensa-modules.c:9111:
+^I^Icase 160:$

ERROR: code indent should never use tabs
#9156: FILE: target/xtensa/core-fsf/xtensa-modules.c:9112:
+^I^I  return 202; /* wsr.dbreakc0 */$

ERROR: code indent should never use tabs
#9157: FILE: target/xtensa/core-fsf/xtensa-modules.c:9113:
+^I^Icase 161:$

ERROR: code indent should never use tabs
#9158: FILE: target/xtensa/core-fsf/xtensa-modules.c:9114:
+^I^I  return 208; /* wsr.dbreakc1 */$

ERROR: code indent should never use tabs
#9159: FILE: target/xtensa/core-fsf/xtensa-modules.c:9115:
+^I^Icase 177:$

ERROR: code indent should never use tabs
#9160: FILE: target/xtensa/core-fsf/xtensa-modules.c:9116:
+^I^I  return 140; /* wsr.epc1 */$

ERROR: code indent should never use tabs
#9161: FILE: target/xtensa/core-fsf/xtensa-modules.c:9117:
+^I^Icase 178:$

ERROR: code indent should never use tabs
#9162: FILE: target/xtensa/core-fsf/xtensa-modules.c:9118:
+^I^I  return 146; /* wsr.epc2 */$

ERROR: code indent should never use tabs
#9163: FILE: target/xtensa/core-fsf/xtensa-modules.c:9119:
+^I^Icase 179:$

ERROR: code indent should never use tabs
#9164: FILE: target/xtensa/core-fsf/xtensa-modules.c:9120:
+^I^I  return 152; /* wsr.epc3 */$

ERROR: code indent should never use tabs
#9165: FILE: target/xtensa/core-fsf/xtensa-modules.c:9121:
+^I^Icase 180:$

ERROR: code indent should never use tabs
#9166: FILE: target/xtensa/core-fsf/xtensa-modules.c:9122:
+^I^I  return 158; /* wsr.epc4 */$

ERROR: code indent should never use tabs
#9167: FILE: target/xtensa/core-fsf/xtensa-modules.c:9123:
+^I^Icase 192:$

ERROR: code indent should never use tabs
#9168: FILE: target/xtensa/core-fsf/xtensa-modules.c:9124:
+^I^I  return 176; /* wsr.depc */$

ERROR: code indent should never use tabs
#9169: FILE: target/xtensa/core-fsf/xtensa-modules.c:9125:
+^I^Icase 194:$

ERROR: code indent should never use tabs
#9170: FILE: target/xtensa/core-fsf/xtensa-modules.c:9126:
+^I^I  return 164; /* wsr.eps2 */$

ERROR: code indent should never use tabs
#9171: FILE: target/xtensa/core-fsf/xtensa-modules.c:9127:
+^I^Icase 195:$

ERROR: code indent should never use tabs
#9172: FILE: target/xtensa/core-fsf/xtensa-modules.c:9128:
+^I^I  return 167; /* wsr.eps3 */$

ERROR: code indent should never use tabs
#9173: FILE: target/xtensa/core-fsf/xtensa-modules.c:9129:
+^I^Icase 196:$

ERROR: code indent should never use tabs
#9174: FILE: target/xtensa/core-fsf/xtensa-modules.c:9130:
+^I^I  return 170; /* wsr.eps4 */$

ERROR: code indent should never use tabs
#9175: FILE: target/xtensa/core-fsf/xtensa-modules.c:9131:
+^I^Icase 209:$

ERROR: code indent should never use tabs
#9176: FILE: target/xtensa/core-fsf/xtensa-modules.c:9132:
+^I^I  return 143; /* wsr.excsave1 */$

ERROR: code indent should never use tabs
#9177: FILE: target/xtensa/core-fsf/xtensa-modules.c:9133:
+^I^Icase 210:$

ERROR: code indent should never use tabs
#9178: FILE: target/xtensa/core-fsf/xtensa-modules.c:9134:
+^I^I  return 149; /* wsr.excsave2 */$

ERROR: code indent should never use tabs
#9179: FILE: target/xtensa/core-fsf/xtensa-modules.c:9135:
+^I^Icase 211:$

ERROR: code indent should never use tabs
#9180: FILE: target/xtensa/core-fsf/xtensa-modules.c:9136:
+^I^I  return 155; /* wsr.excsave3 */$

ERROR: code indent should never use tabs
#9181: FILE: target/xtensa/core-fsf/xtensa-modules.c:9137:
+^I^Icase 212:$

ERROR: code indent should never use tabs
#9182: FILE: target/xtensa/core-fsf/xtensa-modules.c:9138:
+^I^I  return 161; /* wsr.excsave4 */$

ERROR: code indent should never use tabs
#9183: FILE: target/xtensa/core-fsf/xtensa-modules.c:9139:
+^I^Icase 226:$

ERROR: code indent should never use tabs
#9184: FILE: target/xtensa/core-fsf/xtensa-modules.c:9140:
+^I^I  return 191; /* wsr.intset */$

ERROR: code indent should never use tabs
#9185: FILE: target/xtensa/core-fsf/xtensa-modules.c:9141:
+^I^Icase 227:$

ERROR: code indent should never use tabs
#9186: FILE: target/xtensa/core-fsf/xtensa-modules.c:9142:
+^I^I  return 192; /* wsr.intclear */$

ERROR: code indent should never use tabs
#9187: FILE: target/xtensa/core-fsf/xtensa-modules.c:9143:
+^I^Icase 228:$

ERROR: code indent should never use tabs
#9188: FILE: target/xtensa/core-fsf/xtensa-modules.c:9144:
+^I^I  return 194; /* wsr.intenable */$

ERROR: code indent should never use tabs
#9189: FILE: target/xtensa/core-fsf/xtensa-modules.c:9145:
+^I^Icase 230:$

ERROR: code indent should never use tabs
#9190: FILE: target/xtensa/core-fsf/xtensa-modules.c:9146:
+^I^I  return 137; /* wsr.ps */$

ERROR: code indent should never use tabs
#9191: FILE: target/xtensa/core-fsf/xtensa-modules.c:9147:
+^I^Icase 232:$

ERROR: code indent should never use tabs
#9192: FILE: target/xtensa/core-fsf/xtensa-modules.c:9148:
+^I^I  return 179; /* wsr.exccause */$

ERROR: code indent should never use tabs
#9193: FILE: target/xtensa/core-fsf/xtensa-modules.c:9149:
+^I^Icase 233:$

ERROR: code indent should never use tabs
#9194: FILE: target/xtensa/core-fsf/xtensa-modules.c:9150:
+^I^I  return 220; /* wsr.debugcause */$

ERROR: code indent should never use tabs
#9195: FILE: target/xtensa/core-fsf/xtensa-modules.c:9151:
+^I^Icase 234:$

ERROR: code indent should never use tabs
#9196: FILE: target/xtensa/core-fsf/xtensa-modules.c:9152:
+^I^I  return 234; /* wsr.ccount */$

ERROR: code indent should never use tabs
#9197: FILE: target/xtensa/core-fsf/xtensa-modules.c:9153:
+^I^Icase 236:$

ERROR: code indent should never use tabs
#9198: FILE: target/xtensa/core-fsf/xtensa-modules.c:9154:
+^I^I  return 223; /* wsr.icount */$

ERROR: code indent should never use tabs
#9199: FILE: target/xtensa/core-fsf/xtensa-modules.c:9155:
+^I^Icase 237:$

ERROR: code indent should never use tabs
#9200: FILE: target/xtensa/core-fsf/xtensa-modules.c:9156:
+^I^I  return 226; /* wsr.icountlevel */$

ERROR: code indent should never use tabs
#9201: FILE: target/xtensa/core-fsf/xtensa-modules.c:9157:
+^I^Icase 238:$

ERROR: code indent should never use tabs
#9202: FILE: target/xtensa/core-fsf/xtensa-modules.c:9158:
+^I^I  return 173; /* wsr.excvaddr */$

ERROR: code indent should never use tabs
#9203: FILE: target/xtensa/core-fsf/xtensa-modules.c:9159:
+^I^Icase 240:$

ERROR: code indent should never use tabs
#9204: FILE: target/xtensa/core-fsf/xtensa-modules.c:9160:
+^I^I  return 237; /* wsr.ccompare0 */$

ERROR: code indent should never use tabs
#9205: FILE: target/xtensa/core-fsf/xtensa-modules.c:9161:
+^I^Icase 241:$

ERROR: code indent should never use tabs
#9206: FILE: target/xtensa/core-fsf/xtensa-modules.c:9162:
+^I^I  return 240; /* wsr.ccompare1 */$

ERROR: code indent should never use tabs
#9207: FILE: target/xtensa/core-fsf/xtensa-modules.c:9163:
+^I^Icase 242:$

ERROR: code indent should never use tabs
#9208: FILE: target/xtensa/core-fsf/xtensa-modules.c:9164:
+^I^I  return 243; /* wsr.ccompare2 */$

ERROR: code indent should never use tabs
#9209: FILE: target/xtensa/core-fsf/xtensa-modules.c:9165:
+^I^Icase 244:$

ERROR: code indent should never use tabs
#9210: FILE: target/xtensa/core-fsf/xtensa-modules.c:9166:
+^I^I  return 182; /* wsr.misc0 */$

ERROR: code indent should never use tabs
#9211: FILE: target/xtensa/core-fsf/xtensa-modules.c:9167:
+^I^Icase 245:$

ERROR: code indent should never use tabs
#9212: FILE: target/xtensa/core-fsf/xtensa-modules.c:9168:
+^I^I  return 185; /* wsr.misc1 */$

ERROR: code indent should never use tabs
#9213: FILE: target/xtensa/core-fsf/xtensa-modules.c:9169:
+^I^I}$

ERROR: code indent should never use tabs
#9214: FILE: target/xtensa/core-fsf/xtensa-modules.c:9170:
+^I      break;$

ERROR: code indent should never use tabs
#9215: FILE: target/xtensa/core-fsf/xtensa-modules.c:9171:
+^I    case 8:$

ERROR: code indent should never use tabs
#9216: FILE: target/xtensa/core-fsf/xtensa-modules.c:9172:
+^I      return 89; /* moveqz */$

ERROR: code indent should never use tabs
#9217: FILE: target/xtensa/core-fsf/xtensa-modules.c:9173:
+^I    case 9:$

ERROR: code indent should never use tabs
#9218: FILE: target/xtensa/core-fsf/xtensa-modules.c:9174:
+^I      return 90; /* movnez */$

ERROR: code indent should never use tabs
#9219: FILE: target/xtensa/core-fsf/xtensa-modules.c:9175:
+^I    case 10:$

ERROR: code indent should never use tabs
#9220: FILE: target/xtensa/core-fsf/xtensa-modules.c:9176:
+^I      return 91; /* movltz */$

ERROR: code indent should never use tabs
#9221: FILE: target/xtensa/core-fsf/xtensa-modules.c:9177:
+^I    case 11:$

ERROR: code indent should never use tabs
#9222: FILE: target/xtensa/core-fsf/xtensa-modules.c:9178:
+^I      return 92; /* movgez */$

ERROR: code indent should never use tabs
#9223: FILE: target/xtensa/core-fsf/xtensa-modules.c:9179:
+^I    }$

ERROR: code indent should never use tabs
#9224: FILE: target/xtensa/core-fsf/xtensa-modules.c:9180:
+^I  break;$

ERROR: code indent should never use tabs
#9225: FILE: target/xtensa/core-fsf/xtensa-modules.c:9181:
+^Icase 4:$

ERROR: code indent should never use tabs
#9226: FILE: target/xtensa/core-fsf/xtensa-modules.c:9182:
+^Icase 5:$

ERROR: code indent should never use tabs
#9227: FILE: target/xtensa/core-fsf/xtensa-modules.c:9183:
+^I  return 76; /* extui */$

ERROR: code indent should never use tabs
#9228: FILE: target/xtensa/core-fsf/xtensa-modules.c:9184:
+^Icase 9:$

ERROR: code indent should never use tabs
#9229: FILE: target/xtensa/core-fsf/xtensa-modules.c:9185:
+^I  switch (Field_op2_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9229: FILE: target/xtensa/core-fsf/xtensa-modules.c:9185:
+	  switch (Field_op2_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#9230: FILE: target/xtensa/core-fsf/xtensa-modules.c:9186:
+^I    {$

ERROR: code indent should never use tabs
#9231: FILE: target/xtensa/core-fsf/xtensa-modules.c:9187:
+^I    case 0:$

ERROR: code indent should never use tabs
#9232: FILE: target/xtensa/core-fsf/xtensa-modules.c:9188:
+^I      return 18; /* l32e */$

ERROR: code indent should never use tabs
#9233: FILE: target/xtensa/core-fsf/xtensa-modules.c:9189:
+^I    case 4:$

ERROR: code indent should never use tabs
#9234: FILE: target/xtensa/core-fsf/xtensa-modules.c:9190:
+^I      return 19; /* s32e */$

ERROR: code indent should never use tabs
#9235: FILE: target/xtensa/core-fsf/xtensa-modules.c:9191:
+^I    }$

ERROR: code indent should never use tabs
#9236: FILE: target/xtensa/core-fsf/xtensa-modules.c:9192:
+^I  break;$

ERROR: code indent should never use tabs
#9237: FILE: target/xtensa/core-fsf/xtensa-modules.c:9193:
+^I}$

ERROR: that open brace { should be on the previous line
#9242: FILE: target/xtensa/core-fsf/xtensa-modules.c:9198:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#9243: FILE: target/xtensa/core-fsf/xtensa-modules.c:9199:
+^I{$

ERROR: code indent should never use tabs
#9244: FILE: target/xtensa/core-fsf/xtensa-modules.c:9200:
+^Icase 0:$

ERROR: code indent should never use tabs
#9245: FILE: target/xtensa/core-fsf/xtensa-modules.c:9201:
+^I  return 84; /* l8ui */$

ERROR: code indent should never use tabs
#9246: FILE: target/xtensa/core-fsf/xtensa-modules.c:9202:
+^Icase 1:$

ERROR: code indent should never use tabs
#9247: FILE: target/xtensa/core-fsf/xtensa-modules.c:9203:
+^I  return 80; /* l16ui */$

ERROR: code indent should never use tabs
#9248: FILE: target/xtensa/core-fsf/xtensa-modules.c:9204:
+^Icase 2:$

ERROR: code indent should never use tabs
#9249: FILE: target/xtensa/core-fsf/xtensa-modules.c:9205:
+^I  return 82; /* l32i */$

ERROR: code indent should never use tabs
#9250: FILE: target/xtensa/core-fsf/xtensa-modules.c:9206:
+^Icase 4:$

ERROR: code indent should never use tabs
#9251: FILE: target/xtensa/core-fsf/xtensa-modules.c:9207:
+^I  return 99; /* s8i */$

ERROR: code indent should never use tabs
#9252: FILE: target/xtensa/core-fsf/xtensa-modules.c:9208:
+^Icase 5:$

ERROR: code indent should never use tabs
#9253: FILE: target/xtensa/core-fsf/xtensa-modules.c:9209:
+^I  return 97; /* s16i */$

ERROR: code indent should never use tabs
#9254: FILE: target/xtensa/core-fsf/xtensa-modules.c:9210:
+^Icase 6:$

ERROR: code indent should never use tabs
#9255: FILE: target/xtensa/core-fsf/xtensa-modules.c:9211:
+^I  return 98; /* s32i */$

ERROR: code indent should never use tabs
#9256: FILE: target/xtensa/core-fsf/xtensa-modules.c:9212:
+^Icase 7:$

ERROR: code indent should never use tabs
#9257: FILE: target/xtensa/core-fsf/xtensa-modules.c:9213:
+^I  switch (Field_t_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9257: FILE: target/xtensa/core-fsf/xtensa-modules.c:9213:
+	  switch (Field_t_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#9258: FILE: target/xtensa/core-fsf/xtensa-modules.c:9214:
+^I    {$

ERROR: code indent should never use tabs
#9259: FILE: target/xtensa/core-fsf/xtensa-modules.c:9215:
+^I    case 0:$

ERROR: code indent should never use tabs
#9260: FILE: target/xtensa/core-fsf/xtensa-modules.c:9216:
+^I      return 258; /* dpfr */$

ERROR: code indent should never use tabs
#9261: FILE: target/xtensa/core-fsf/xtensa-modules.c:9217:
+^I    case 1:$

ERROR: code indent should never use tabs
#9262: FILE: target/xtensa/core-fsf/xtensa-modules.c:9218:
+^I      return 259; /* dpfw */$

ERROR: code indent should never use tabs
#9263: FILE: target/xtensa/core-fsf/xtensa-modules.c:9219:
+^I    case 2:$

ERROR: code indent should never use tabs
#9264: FILE: target/xtensa/core-fsf/xtensa-modules.c:9220:
+^I      return 260; /* dpfro */$

ERROR: code indent should never use tabs
#9265: FILE: target/xtensa/core-fsf/xtensa-modules.c:9221:
+^I    case 3:$

ERROR: code indent should never use tabs
#9266: FILE: target/xtensa/core-fsf/xtensa-modules.c:9222:
+^I      return 261; /* dpfwo */$

ERROR: code indent should never use tabs
#9267: FILE: target/xtensa/core-fsf/xtensa-modules.c:9223:
+^I    case 4:$

ERROR: code indent should never use tabs
#9268: FILE: target/xtensa/core-fsf/xtensa-modules.c:9224:
+^I      return 252; /* dhwb */$

ERROR: code indent should never use tabs
#9269: FILE: target/xtensa/core-fsf/xtensa-modules.c:9225:
+^I    case 5:$

ERROR: code indent should never use tabs
#9270: FILE: target/xtensa/core-fsf/xtensa-modules.c:9226:
+^I      return 253; /* dhwbi */$

ERROR: code indent should never use tabs
#9271: FILE: target/xtensa/core-fsf/xtensa-modules.c:9227:
+^I    case 6:$

ERROR: code indent should never use tabs
#9272: FILE: target/xtensa/core-fsf/xtensa-modules.c:9228:
+^I      return 256; /* dhi */$

ERROR: code indent should never use tabs
#9273: FILE: target/xtensa/core-fsf/xtensa-modules.c:9229:
+^I    case 7:$

ERROR: code indent should never use tabs
#9274: FILE: target/xtensa/core-fsf/xtensa-modules.c:9230:
+^I      return 257; /* dii */$

ERROR: code indent should never use tabs
#9275: FILE: target/xtensa/core-fsf/xtensa-modules.c:9231:
+^I    case 8:$

ERROR: code indent should never use tabs
#9276: FILE: target/xtensa/core-fsf/xtensa-modules.c:9232:
+^I      switch (Field_op1_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9276: FILE: target/xtensa/core-fsf/xtensa-modules.c:9232:
+	      switch (Field_op1_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#9277: FILE: target/xtensa/core-fsf/xtensa-modules.c:9233:
+^I^I{$

ERROR: code indent should never use tabs
#9278: FILE: target/xtensa/core-fsf/xtensa-modules.c:9234:
+^I^Icase 4:$

ERROR: code indent should never use tabs
#9279: FILE: target/xtensa/core-fsf/xtensa-modules.c:9235:
+^I^I  return 254; /* diwb */$

ERROR: code indent should never use tabs
#9280: FILE: target/xtensa/core-fsf/xtensa-modules.c:9236:
+^I^Icase 5:$

ERROR: code indent should never use tabs
#9281: FILE: target/xtensa/core-fsf/xtensa-modules.c:9237:
+^I^I  return 255; /* diwbi */$

ERROR: code indent should never use tabs
#9282: FILE: target/xtensa/core-fsf/xtensa-modules.c:9238:
+^I^I}$

ERROR: code indent should never use tabs
#9283: FILE: target/xtensa/core-fsf/xtensa-modules.c:9239:
+^I      break;$

ERROR: code indent should never use tabs
#9284: FILE: target/xtensa/core-fsf/xtensa-modules.c:9240:
+^I    case 12:$

ERROR: code indent should never use tabs
#9285: FILE: target/xtensa/core-fsf/xtensa-modules.c:9241:
+^I      return 245; /* ipf */$

ERROR: code indent should never use tabs
#9286: FILE: target/xtensa/core-fsf/xtensa-modules.c:9242:
+^I    case 14:$

ERROR: code indent should never use tabs
#9287: FILE: target/xtensa/core-fsf/xtensa-modules.c:9243:
+^I      return 246; /* ihi */$

ERROR: code indent should never use tabs
#9288: FILE: target/xtensa/core-fsf/xtensa-modules.c:9244:
+^I    case 15:$

ERROR: code indent should never use tabs
#9289: FILE: target/xtensa/core-fsf/xtensa-modules.c:9245:
+^I      return 247; /* iii */$

ERROR: code indent should never use tabs
#9290: FILE: target/xtensa/core-fsf/xtensa-modules.c:9246:
+^I    }$

ERROR: code indent should never use tabs
#9291: FILE: target/xtensa/core-fsf/xtensa-modules.c:9247:
+^I  break;$

ERROR: code indent should never use tabs
#9292: FILE: target/xtensa/core-fsf/xtensa-modules.c:9248:
+^Icase 9:$

ERROR: code indent should never use tabs
#9293: FILE: target/xtensa/core-fsf/xtensa-modules.c:9249:
+^I  return 81; /* l16si */$

ERROR: code indent should never use tabs
#9294: FILE: target/xtensa/core-fsf/xtensa-modules.c:9250:
+^Icase 10:$

ERROR: code indent should never use tabs
#9295: FILE: target/xtensa/core-fsf/xtensa-modules.c:9251:
+^I  return 88; /* movi */$

ERROR: code indent should never use tabs
#9296: FILE: target/xtensa/core-fsf/xtensa-modules.c:9252:
+^Icase 12:$

ERROR: code indent should never use tabs
#9297: FILE: target/xtensa/core-fsf/xtensa-modules.c:9253:
+^I  return 37; /* addi */$

ERROR: code indent should never use tabs
#9298: FILE: target/xtensa/core-fsf/xtensa-modules.c:9254:
+^Icase 13:$

ERROR: code indent should never use tabs
#9299: FILE: target/xtensa/core-fsf/xtensa-modules.c:9255:
+^I  return 38; /* addmi */$

ERROR: code indent should never use tabs
#9300: FILE: target/xtensa/core-fsf/xtensa-modules.c:9256:
+^I}$

ERROR: that open brace { should be on the previous line
#9303: FILE: target/xtensa/core-fsf/xtensa-modules.c:9259:
+      switch (Field_n_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#9304: FILE: target/xtensa/core-fsf/xtensa-modules.c:9260:
+^I{$

ERROR: code indent should never use tabs
#9305: FILE: target/xtensa/core-fsf/xtensa-modules.c:9261:
+^Icase 0:$

ERROR: code indent should never use tabs
#9306: FILE: target/xtensa/core-fsf/xtensa-modules.c:9262:
+^I  return 74; /* call0 */$

ERROR: code indent should never use tabs
#9307: FILE: target/xtensa/core-fsf/xtensa-modules.c:9263:
+^Icase 1:$

ERROR: code indent should never use tabs
#9308: FILE: target/xtensa/core-fsf/xtensa-modules.c:9264:
+^I  return 7; /* call4 */$

ERROR: code indent should never use tabs
#9309: FILE: target/xtensa/core-fsf/xtensa-modules.c:9265:
+^Icase 2:$

ERROR: code indent should never use tabs
#9310: FILE: target/xtensa/core-fsf/xtensa-modules.c:9266:
+^I  return 6; /* call8 */$

ERROR: code indent should never use tabs
#9311: FILE: target/xtensa/core-fsf/xtensa-modules.c:9267:
+^Icase 3:$

ERROR: code indent should never use tabs
#9312: FILE: target/xtensa/core-fsf/xtensa-modules.c:9268:
+^I  return 5; /* call12 */$

ERROR: code indent should never use tabs
#9313: FILE: target/xtensa/core-fsf/xtensa-modules.c:9269:
+^I}$

ERROR: that open brace { should be on the previous line
#9316: FILE: target/xtensa/core-fsf/xtensa-modules.c:9272:
+      switch (Field_n_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#9317: FILE: target/xtensa/core-fsf/xtensa-modules.c:9273:
+^I{$

ERROR: code indent should never use tabs
#9318: FILE: target/xtensa/core-fsf/xtensa-modules.c:9274:
+^Icase 0:$

ERROR: code indent should never use tabs
#9319: FILE: target/xtensa/core-fsf/xtensa-modules.c:9275:
+^I  return 78; /* j */$

ERROR: code indent should never use tabs
#9320: FILE: target/xtensa/core-fsf/xtensa-modules.c:9276:
+^Icase 1:$

ERROR: code indent should never use tabs
#9321: FILE: target/xtensa/core-fsf/xtensa-modules.c:9277:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9321: FILE: target/xtensa/core-fsf/xtensa-modules.c:9277:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#9322: FILE: target/xtensa/core-fsf/xtensa-modules.c:9278:
+^I    {$

ERROR: code indent should never use tabs
#9323: FILE: target/xtensa/core-fsf/xtensa-modules.c:9279:
+^I    case 0:$

ERROR: code indent should never use tabs
#9324: FILE: target/xtensa/core-fsf/xtensa-modules.c:9280:
+^I      return 70; /* beqz */$

ERROR: code indent should never use tabs
#9325: FILE: target/xtensa/core-fsf/xtensa-modules.c:9281:
+^I    case 1:$

ERROR: code indent should never use tabs
#9326: FILE: target/xtensa/core-fsf/xtensa-modules.c:9282:
+^I      return 71; /* bnez */$

ERROR: code indent should never use tabs
#9327: FILE: target/xtensa/core-fsf/xtensa-modules.c:9283:
+^I    case 2:$

ERROR: code indent should never use tabs
#9328: FILE: target/xtensa/core-fsf/xtensa-modules.c:9284:
+^I      return 73; /* bltz */$

ERROR: code indent should never use tabs
#9329: FILE: target/xtensa/core-fsf/xtensa-modules.c:9285:
+^I    case 3:$

ERROR: code indent should never use tabs
#9330: FILE: target/xtensa/core-fsf/xtensa-modules.c:9286:
+^I      return 72; /* bgez */$

ERROR: code indent should never use tabs
#9331: FILE: target/xtensa/core-fsf/xtensa-modules.c:9287:
+^I    }$

ERROR: code indent should never use tabs
#9332: FILE: target/xtensa/core-fsf/xtensa-modules.c:9288:
+^I  break;$

ERROR: code indent should never use tabs
#9333: FILE: target/xtensa/core-fsf/xtensa-modules.c:9289:
+^Icase 2:$

ERROR: code indent should never use tabs
#9334: FILE: target/xtensa/core-fsf/xtensa-modules.c:9290:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9334: FILE: target/xtensa/core-fsf/xtensa-modules.c:9290:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#9335: FILE: target/xtensa/core-fsf/xtensa-modules.c:9291:
+^I    {$

ERROR: code indent should never use tabs
#9336: FILE: target/xtensa/core-fsf/xtensa-modules.c:9292:
+^I    case 0:$

ERROR: code indent should never use tabs
#9337: FILE: target/xtensa/core-fsf/xtensa-modules.c:9293:
+^I      return 50; /* beqi */$

ERROR: code indent should never use tabs
#9338: FILE: target/xtensa/core-fsf/xtensa-modules.c:9294:
+^I    case 1:$

ERROR: code indent should never use tabs
#9339: FILE: target/xtensa/core-fsf/xtensa-modules.c:9295:
+^I      return 51; /* bnei */$

ERROR: code indent should never use tabs
#9340: FILE: target/xtensa/core-fsf/xtensa-modules.c:9296:
+^I    case 2:$

ERROR: code indent should never use tabs
#9341: FILE: target/xtensa/core-fsf/xtensa-modules.c:9297:
+^I      return 53; /* blti */$

ERROR: code indent should never use tabs
#9342: FILE: target/xtensa/core-fsf/xtensa-modules.c:9298:
+^I    case 3:$

ERROR: code indent should never use tabs
#9343: FILE: target/xtensa/core-fsf/xtensa-modules.c:9299:
+^I      return 52; /* bgei */$

ERROR: code indent should never use tabs
#9344: FILE: target/xtensa/core-fsf/xtensa-modules.c:9300:
+^I    }$

ERROR: code indent should never use tabs
#9345: FILE: target/xtensa/core-fsf/xtensa-modules.c:9301:
+^I  break;$

ERROR: code indent should never use tabs
#9346: FILE: target/xtensa/core-fsf/xtensa-modules.c:9302:
+^Icase 3:$

ERROR: code indent should never use tabs
#9347: FILE: target/xtensa/core-fsf/xtensa-modules.c:9303:
+^I  switch (Field_m_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9347: FILE: target/xtensa/core-fsf/xtensa-modules.c:9303:
+	  switch (Field_m_Slot_inst_get (insn))
+	    {

ERROR: code indent should never use tabs
#9348: FILE: target/xtensa/core-fsf/xtensa-modules.c:9304:
+^I    {$

ERROR: code indent should never use tabs
#9349: FILE: target/xtensa/core-fsf/xtensa-modules.c:9305:
+^I    case 0:$

ERROR: code indent should never use tabs
#9350: FILE: target/xtensa/core-fsf/xtensa-modules.c:9306:
+^I      return 11; /* entry */$

ERROR: code indent should never use tabs
#9351: FILE: target/xtensa/core-fsf/xtensa-modules.c:9307:
+^I    case 1:$

ERROR: code indent should never use tabs
#9352: FILE: target/xtensa/core-fsf/xtensa-modules.c:9308:
+^I      switch (Field_r_Slot_inst_get (insn))$

ERROR: that open brace { should be on the previous line
#9352: FILE: target/xtensa/core-fsf/xtensa-modules.c:9308:
+	      switch (Field_r_Slot_inst_get (insn))
+		{

ERROR: code indent should never use tabs
#9353: FILE: target/xtensa/core-fsf/xtensa-modules.c:9309:
+^I^I{$

ERROR: code indent should never use tabs
#9354: FILE: target/xtensa/core-fsf/xtensa-modules.c:9310:
+^I^Icase 8:$

ERROR: code indent should never use tabs
#9355: FILE: target/xtensa/core-fsf/xtensa-modules.c:9311:
+^I^I  return 85; /* loop */$

ERROR: code indent should never use tabs
#9356: FILE: target/xtensa/core-fsf/xtensa-modules.c:9312:
+^I^Icase 9:$

ERROR: code indent should never use tabs
#9357: FILE: target/xtensa/core-fsf/xtensa-modules.c:9313:
+^I^I  return 86; /* loopnez */$

ERROR: code indent should never use tabs
#9358: FILE: target/xtensa/core-fsf/xtensa-modules.c:9314:
+^I^Icase 10:$

ERROR: code indent should never use tabs
#9359: FILE: target/xtensa/core-fsf/xtensa-modules.c:9315:
+^I^I  return 87; /* loopgtz */$

ERROR: code indent should never use tabs
#9360: FILE: target/xtensa/core-fsf/xtensa-modules.c:9316:
+^I^I}$

ERROR: code indent should never use tabs
#9361: FILE: target/xtensa/core-fsf/xtensa-modules.c:9317:
+^I      break;$

ERROR: code indent should never use tabs
#9362: FILE: target/xtensa/core-fsf/xtensa-modules.c:9318:
+^I    case 2:$

ERROR: code indent should never use tabs
#9363: FILE: target/xtensa/core-fsf/xtensa-modules.c:9319:
+^I      return 57; /* bltui */$

ERROR: code indent should never use tabs
#9364: FILE: target/xtensa/core-fsf/xtensa-modules.c:9320:
+^I    case 3:$

ERROR: code indent should never use tabs
#9365: FILE: target/xtensa/core-fsf/xtensa-modules.c:9321:
+^I      return 56; /* bgeui */$

ERROR: code indent should never use tabs
#9366: FILE: target/xtensa/core-fsf/xtensa-modules.c:9322:
+^I    }$

ERROR: code indent should never use tabs
#9367: FILE: target/xtensa/core-fsf/xtensa-modules.c:9323:
+^I  break;$

ERROR: code indent should never use tabs
#9368: FILE: target/xtensa/core-fsf/xtensa-modules.c:9324:
+^I}$

ERROR: that open brace { should be on the previous line
#9371: FILE: target/xtensa/core-fsf/xtensa-modules.c:9327:
+      switch (Field_r_Slot_inst_get (insn))
+	{

ERROR: code indent should never use tabs
#9372: FILE: target/xtensa/core-fsf/xtensa-modules.c:9328:
+^I{$

ERROR: code indent should never use tabs
#9373: FILE: target/xtensa/core-fsf/xtensa-modules.c:9329:
+^Icase 0:$

ERROR: code indent should never use tabs
#9374: FILE: target/xtensa/core-fsf/xtensa-modules.c:9330:
+^I  return 65; /* bnone */$

ERROR: code indent should never use tabs
#9375: FILE: target/xtensa/core-fsf/xtensa-modules.c:9331:
+^Icase 1:$

ERROR: code indent should never use tabs
#9376: FILE: target/xtensa/core-fsf/xtensa-modules.c:9332:
+^I  return 58; /* beq */$

ERROR: code indent should never use tabs
#9377: FILE: target/xtensa/core-fsf/xtensa-modules.c:9333:
+^Icase 2:$

ERROR: code indent should never use tabs
#9378: FILE: target/xtensa/core-fsf/xtensa-modules.c:9334:
+^I  return 61; /* blt */$

ERROR: code indent should never use tabs
#9379: FILE: target/xtensa/core-fsf/xtensa-modules.c:9335:
+^Icase 3:$

ERROR: code indent should never use tabs
#9380: FILE: target/xtensa/core-fsf/xtensa-modules.c:9336:
+^I  return 63; /* bltu */$

ERROR: code indent should never use tabs
#9381: FILE: target/xtensa/core-fsf/xtensa-modules.c:9337:
+^Icase 4:$

ERROR: code indent should never use tabs
#9382: FILE: target/xtensa/core-fsf/xtensa-modules.c:9338:
+^I  return 66; /* ball */$

ERROR: code indent should never use tabs
#9383: FILE: target/xtensa/core-fsf/xtensa-modules.c:9339:
+^Icase 5:$

ERROR: code indent should never use tabs
#9384: FILE: target/xtensa/core-fsf/xtensa-modules.c:9340:
+^I  return 68; /* bbc */$

ERROR: code indent should never use tabs
#9385: FILE: target/xtensa/core-fsf/xtensa-modules.c:9341:
+^Icase 6:$

ERROR: code indent should never use tabs
#9386: FILE: target/xtensa/core-fsf/xtensa-modules.c:9342:
+^Icase 7:$

ERROR: code indent should never use tabs
#9387: FILE: target/xtensa/core-fsf/xtensa-modules.c:9343:
+^I  return 54; /* bbci */$

ERROR: code indent should never use tabs
#9388: FILE: target/xtensa/core-fsf/xtensa-modules.c:9344:
+^Icase 8:$

ERROR: code indent should never use tabs
#9389: FILE: target/xtensa/core-fsf/xtensa-modules.c:9345:
+^I  return 64; /* bany */$

ERROR: code indent should never use tabs
#9390: FILE: target/xtensa/core-fsf/xtensa-modules.c:9346:
+^Icase 9:$

ERROR: code indent should never use tabs
#9391: FILE: target/xtensa/core-fsf/xtensa-modules.c:9347:
+^I  return 59; /* bne */$

ERROR: code indent should never use tabs
#9392: FILE: target/xtensa/core-fsf/xtensa-modules.c:9348:
+^Icase 10:$

ERROR: code indent should never use tabs
#9393: FILE: target/xtensa/core-fsf/xtensa-modules.c:9349:
+^I  return 60; /* bge */$

ERROR: code indent should never use tabs
#9394: FILE: target/xtensa/core-fsf/xtensa-modules.c:9350:
+^Icase 11:$

ERROR: code indent should never use tabs
#9395: FILE: target/xtensa/core-fsf/xtensa-modules.c:9351:
+^I  return 62; /* bgeu */$

ERROR: code indent should never use tabs
#9396: FILE: target/xtensa/core-fsf/xtensa-modules.c:9352:
+^Icase 12:$

ERROR: code indent should never use tabs
#9397: FILE: target/xtensa/core-fsf/xtensa-modules.c:9353:
+^I  return 67; /* bnall */$

ERROR: code indent should never use tabs
#9398: FILE: target/xtensa/core-fsf/xtensa-modules.c:9354:
+^Icase 13:$

ERROR: code indent should never use tabs
#9399: FILE: target/xtensa/core-fsf/xtensa-modules.c:9355:
+^I  return 69; /* bbs */$

ERROR: code indent should never use tabs
#9400: FILE: target/xtensa/core-fsf/xtensa-modules.c:9356:
+^Icase 14:$

ERROR: code indent should never use tabs
#9401: FILE: target/xtensa/core-fsf/xtensa-modules.c:9357:
+^Icase 15:$

ERROR: code indent should never use tabs
#9402: FILE: target/xtensa/core-fsf/xtensa-modules.c:9358:
+^I  return 55; /* bbsi */$

ERROR: code indent should never use tabs
#9403: FILE: target/xtensa/core-fsf/xtensa-modules.c:9359:
+^I}$

ERROR: that open brace { should be on the previous line
#9412: FILE: target/xtensa/core-fsf/xtensa-modules.c:9368:
+  switch (Field_op0_Slot_inst16b_get (insn))
+    {

ERROR: that open brace { should be on the previous line
#9415: FILE: target/xtensa/core-fsf/xtensa-modules.c:9371:
+      switch (Field_i_Slot_inst16b_get (insn))
+	{

ERROR: code indent should never use tabs
#9416: FILE: target/xtensa/core-fsf/xtensa-modules.c:9372:
+^I{$

ERROR: code indent should never use tabs
#9417: FILE: target/xtensa/core-fsf/xtensa-modules.c:9373:
+^Icase 0:$

ERROR: code indent should never use tabs
#9418: FILE: target/xtensa/core-fsf/xtensa-modules.c:9374:
+^I  return 33; /* movi.n */$

ERROR: code indent should never use tabs
#9419: FILE: target/xtensa/core-fsf/xtensa-modules.c:9375:
+^Icase 1:$

ERROR: code indent should never use tabs
#9420: FILE: target/xtensa/core-fsf/xtensa-modules.c:9376:
+^I  switch (Field_z_Slot_inst16b_get (insn))$

ERROR: that open brace { should be on the previous line
#9420: FILE: target/xtensa/core-fsf/xtensa-modules.c:9376:
+	  switch (Field_z_Slot_inst16b_get (insn))
+	    {

ERROR: code indent should never use tabs
#9421: FILE: target/xtensa/core-fsf/xtensa-modules.c:9377:
+^I    {$

ERROR: code indent should never use tabs
#9422: FILE: target/xtensa/core-fsf/xtensa-modules.c:9378:
+^I    case 0:$

ERROR: code indent should never use tabs
#9423: FILE: target/xtensa/core-fsf/xtensa-modules.c:9379:
+^I      return 28; /* beqz.n */$

ERROR: code indent should never use tabs
#9424: FILE: target/xtensa/core-fsf/xtensa-modules.c:9380:
+^I    case 1:$

ERROR: code indent should never use tabs
#9425: FILE: target/xtensa/core-fsf/xtensa-modules.c:9381:
+^I      return 29; /* bnez.n */$

ERROR: code indent should never use tabs
#9426: FILE: target/xtensa/core-fsf/xtensa-modules.c:9382:
+^I    }$

ERROR: code indent should never use tabs
#9427: FILE: target/xtensa/core-fsf/xtensa-modules.c:9383:
+^I  break;$

ERROR: code indent should never use tabs
#9428: FILE: target/xtensa/core-fsf/xtensa-modules.c:9384:
+^I}$

ERROR: that open brace { should be on the previous line
#9431: FILE: target/xtensa/core-fsf/xtensa-modules.c:9387:
+      switch (Field_r_Slot_inst16b_get (insn))
+	{

ERROR: code indent should never use tabs
#9432: FILE: target/xtensa/core-fsf/xtensa-modules.c:9388:
+^I{$

ERROR: code indent should never use tabs
#9433: FILE: target/xtensa/core-fsf/xtensa-modules.c:9389:
+^Icase 0:$

ERROR: code indent should never use tabs
#9434: FILE: target/xtensa/core-fsf/xtensa-modules.c:9390:
+^I  return 32; /* mov.n */$

ERROR: code indent should never use tabs
#9435: FILE: target/xtensa/core-fsf/xtensa-modules.c:9391:
+^Icase 15:$

ERROR: code indent should never use tabs
#9436: FILE: target/xtensa/core-fsf/xtensa-modules.c:9392:
+^I  switch (Field_t_Slot_inst16b_get (insn))$

ERROR: that open brace { should be on the previous line
#9436: FILE: target/xtensa/core-fsf/xtensa-modules.c:9392:
+	  switch (Field_t_Slot_inst16b_get (insn))
+	    {

ERROR: code indent should never use tabs
#9437: FILE: target/xtensa/core-fsf/xtensa-modules.c:9393:
+^I    {$

ERROR: code indent should never use tabs
#9438: FILE: target/xtensa/core-fsf/xtensa-modules.c:9394:
+^I    case 0:$

ERROR: code indent should never use tabs
#9439: FILE: target/xtensa/core-fsf/xtensa-modules.c:9395:
+^I      return 35; /* ret.n */$

ERROR: code indent should never use tabs
#9440: FILE: target/xtensa/core-fsf/xtensa-modules.c:9396:
+^I    case 1:$

ERROR: code indent should never use tabs
#9441: FILE: target/xtensa/core-fsf/xtensa-modules.c:9397:
+^I      return 15; /* retw.n */$

ERROR: code indent should never use tabs
#9442: FILE: target/xtensa/core-fsf/xtensa-modules.c:9398:
+^I    case 2:$

ERROR: code indent should never use tabs
#9443: FILE: target/xtensa/core-fsf/xtensa-modules.c:9399:
+^I      return 197; /* break.n */$

ERROR: code indent should never use tabs
#9444: FILE: target/xtensa/core-fsf/xtensa-modules.c:9400:
+^I    case 3:$

ERROR: code indent should never use tabs
#9445: FILE: target/xtensa/core-fsf/xtensa-modules.c:9401:
+^I      if (Field_s_Slot_inst16b_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#9445: FILE: target/xtensa/core-fsf/xtensa-modules.c:9401:
+	      if (Field_s_Slot_inst16b_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#9446: FILE: target/xtensa/core-fsf/xtensa-modules.c:9402:
+^I^Ireturn 34; /* nop.n */$

ERROR: code indent should never use tabs
#9447: FILE: target/xtensa/core-fsf/xtensa-modules.c:9403:
+^I      break;$

ERROR: code indent should never use tabs
#9448: FILE: target/xtensa/core-fsf/xtensa-modules.c:9404:
+^I    case 6:$

ERROR: code indent should never use tabs
#9449: FILE: target/xtensa/core-fsf/xtensa-modules.c:9405:
+^I      if (Field_s_Slot_inst16b_get (insn) == 0)$

ERROR: braces {} are necessary for all arms of this statement
#9449: FILE: target/xtensa/core-fsf/xtensa-modules.c:9405:
+	      if (Field_s_Slot_inst16b_get (insn) == 0)
[...]

ERROR: code indent should never use tabs
#9450: FILE: target/xtensa/core-fsf/xtensa-modules.c:9406:
+^I^Ireturn 30; /* ill.n */$

ERROR: code indent should never use tabs
#9451: FILE: target/xtensa/core-fsf/xtensa-modules.c:9407:
+^I      break;$

ERROR: code indent should never use tabs
#9452: FILE: target/xtensa/core-fsf/xtensa-modules.c:9408:
+^I    }$

ERROR: code indent should never use tabs
#9453: FILE: target/xtensa/core-fsf/xtensa-modules.c:9409:
+^I  break;$

ERROR: code indent should never use tabs
#9454: FILE: target/xtensa/core-fsf/xtensa-modules.c:9410:
+^I}$

ERROR: that open brace { should be on the previous line
#9463: FILE: target/xtensa/core-fsf/xtensa-modules.c:9419:
+  switch (Field_op0_Slot_inst16a_get (insn))
+    {

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#9477: FILE: target/xtensa/core-fsf/xtensa-modules.c:9433:
+
 ^

ERROR: trailing whitespace
#9477: FILE: target/xtensa/core-fsf/xtensa-modules.c:9433:
+^L$

ERROR: code indent should never use tabs
#9482: FILE: target/xtensa/core-fsf/xtensa-modules.c:9438:
+^I^I^I    xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#9489: FILE: target/xtensa/core-fsf/xtensa-modules.c:9445:
+^I^I^I    const xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#9496: FILE: target/xtensa/core-fsf/xtensa-modules.c:9452:
+^I^I^I^Ixtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#9503: FILE: target/xtensa/core-fsf/xtensa-modules.c:9459:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#9510: FILE: target/xtensa/core-fsf/xtensa-modules.c:9466:
+^I^I^I^Ixtensa_insnbuf slotbuf)$

ERROR: code indent should never use tabs
#9517: FILE: target/xtensa/core-fsf/xtensa-modules.c:9473:
+^I^I^I^Iconst xtensa_insnbuf slotbuf)$

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#9795: FILE: target/xtensa/core-fsf/xtensa-modules.c:9751:
+
 ^

ERROR: trailing whitespace
#9795: FILE: target/xtensa/core-fsf/xtensa-modules.c:9751:
+^L$

ERROR: space prohibited between function name and open parenthesis '('
#9830: FILE: target/xtensa/core-fsf/xtensa-modules.c:9786:
+format_decoder (const xtensa_insnbuf insn)

ERROR: braces {} are necessary for all arms of this statement
#9832: FILE: target/xtensa/core-fsf/xtensa-modules.c:9788:
+  if ((insn[0] & 0x800000) == 0)
[...]

ERROR: braces {} are necessary for all arms of this statement
#9834: FILE: target/xtensa/core-fsf/xtensa-modules.c:9790:
+  if ((insn[0] & 0xc00000) == 0x800000)
[...]

ERROR: braces {} are necessary for all arms of this statement
#9836: FILE: target/xtensa/core-fsf/xtensa-modules.c:9792:
+  if ((insn[0] & 0xe00000) == 0xc00000)
[...]

ERROR: space prohibited between function name and open parenthesis '('
#9861: FILE: target/xtensa/core-fsf/xtensa-modules.c:9817:
+length_decoder (const unsigned char *insn)

ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8
#9867: FILE: target/xtensa/core-fsf/xtensa-modules.c:9823:
+
 ^

ERROR: trailing whitespace
#9867: FILE: target/xtensa/core-fsf/xtensa-modules.c:9823:
+^L$

total: 920 errors, 0 warnings, 9863 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:431:
+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