Skip to content

Commit f84bac3

Browse files
committed
[NFC][Py Reformat] Reformat lit.local.cfg python files in llvm
This is a follow-up to b71edfa since I forgot the lit.local.cfg files in that one. Reformatting is done with `black`. If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run git checkout --ours <yourfile> and then reformat it with black. If you run into any problems, post to discourse about it and we will try to help. RFC Thread below: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Reviewed By: barannikov88, kwk Differential Revision: https://reviews.llvm.org/D150762
1 parent cf8c358 commit f84bac3

File tree

428 files changed

+681
-627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

428 files changed

+681
-627
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AArch64' in config.root.targets:
1+
if not "AArch64" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AMDGPU' in config.root.targets:
1+
if not "AMDGPU" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'PowerPC' in config.root.targets:
1+
if not "PowerPC" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'RISCV' in config.root.targets:
1+
if not "RISCV" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'SystemZ' in config.root.targets:
1+
if not "SystemZ" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
config.suffixes = ['.ll']
1+
config.suffixes = [".ll"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AMDGPU' in config.root.targets:
1+
if not "AMDGPU" in config.root.targets:
22
config.unsupported = True

llvm/test/Analysis/Lint/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
config.suffixes = ['.ll']
1+
config.suffixes = [".ll"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'PowerPC' in config.root.targets:
1+
if not "PowerPC" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AMDGPU' in config.root.targets:
1+
if not "AMDGPU" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'NVPTX' in config.root.targets:
1+
if not "NVPTX" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# This is a directory for utility functions. No test here.
2-
config.suffixes = ['.dummy']
2+
config.suffixes = [".dummy"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
config.suffixes = ['.ml']
1+
config.suffixes = [".ml"]
22

3-
if not 'ocaml' in config.root.llvm_bindings:
3+
if not "ocaml" in config.root.llvm_bindings:
44
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AArch64' in config.root.targets:
1+
if not "AArch64" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AMDGPU' in config.root.targets:
1+
if not "AMDGPU" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/ARC/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARC' in config.root.targets:
1+
if not "ARC" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/ARM/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/AVR/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AVR' in config.root.targets:
1+
if not "AVR" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/BPF/lit.local.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if not 'BPF' in config.root.targets:
1+
if not "BPF" in config.root.targets:
22
config.unsupported = True
3-
if 'system-aix' in config.available_features:
3+
if "system-aix" in config.available_features:
44
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'CSKY' in config.root.targets:
1+
if not "CSKY" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/CSKY/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'CSKY' in config.root.targets:
1+
if not "CSKY" in config.root.targets:
22
config.unsupported = True
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'DirectX' in config.root.targets:
2-
config.unsupported = True
1+
if not "DirectX" in config.root.targets:
2+
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Hexagon' in config.root.targets:
1+
if not "Hexagon" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/Lanai/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Lanai' in config.root.targets:
1+
if not "Lanai" in config.root.targets:
22
config.unsupported = True
Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
import os
22

3-
config.suffixes = ['.ll', '.mir', '.test', '.txt']
3+
config.suffixes = [".ll", ".mir", ".test", ".txt"]
44

5-
extract_section_path = os.path.join(config.llvm_src_root,
6-
'utils', 'extract-section.py')
5+
extract_section_path = os.path.join(config.llvm_src_root, "utils", "extract-section.py")
76

8-
config.substitutions.append(('extract-section',
9-
"'%s' %s %s" % (config.python_executable,
10-
extract_section_path, '--bits-endian little')))
7+
config.substitutions.append(
8+
(
9+
"extract-section",
10+
"'%s' %s %s"
11+
% (config.python_executable, extract_section_path, "--bits-endian little"),
12+
)
13+
)
1114

12-
if not 'LoongArch' in config.root.targets:
15+
if not "LoongArch" in config.root.targets:
1316
config.unsupported = True

llvm/test/CodeGen/M68k/lit.local.cfg

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
import os
22

3-
config.suffixes = ['.ll', '.mir', '.test', '.txt']
3+
config.suffixes = [".ll", ".mir", ".test", ".txt"]
44

5-
extract_section_path = os.path.join(config.llvm_src_root,
6-
'utils', 'extract-section.py')
5+
extract_section_path = os.path.join(config.llvm_src_root, "utils", "extract-section.py")
76

8-
config.substitutions.append(('extract-section',
9-
"'%s' %s %s" % (config.python_executable,
10-
extract_section_path, '--byte-indicator --hex-width=2')))
7+
config.substitutions.append(
8+
(
9+
"extract-section",
10+
"'%s' %s %s"
11+
% (
12+
config.python_executable,
13+
extract_section_path,
14+
"--byte-indicator --hex-width=2",
15+
),
16+
)
17+
)
1118

12-
if not 'M68k' in config.root.targets:
19+
if not "M68k" in config.root.targets:
1320
config.unsupported = True
14-
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import re
22

3-
if not 'AArch64' in config.root.targets:
3+
if not "AArch64" in config.root.targets:
44
config.unsupported = True
55

66
# For now we don't test arm64-win32.
7-
if re.search(r'cygwin|mingw32|win32|windows-gnu|windows-msvc', config.target_triple):
7+
if re.search(r"cygwin|mingw32|win32|windows-gnu|windows-msvc", config.target_triple):
88
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AMDGPU' in config.root.targets:
1+
if not "AMDGPU" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if 'native' not in config.available_features:
1+
if "native" not in config.available_features:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Hexagon' in config.root.targets:
1+
if not "Hexagon" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Mips' in config.root.targets:
1+
if not "Mips" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'NVPTX' in config.root.targets:
1+
if not "NVPTX" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'PowerPC' in config.root.targets:
1+
if not "PowerPC" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'RISCV' in config.root.targets:
1+
if not "RISCV" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'WebAssembly' in config.root.targets:
1+
if not "WebAssembly" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'MSP430' in config.root.targets:
1+
if not "MSP430" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/Mips/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Mips' in config.root.targets:
1+
if not "Mips" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/NVPTX/lit.local.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
if not 'NVPTX' in config.root.targets:
1+
if not "NVPTX" in config.root.targets:
22
config.unsupported = True
3-
config.suffixes.add('.py')
3+
config.suffixes.add(".py")
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if not 'PowerPC' in config.root.targets:
1+
if not "PowerPC" in config.root.targets:
22
config.unsupported = True
33

4-
config.suffixes.add('.py')
4+
config.suffixes.add(".py")

llvm/test/CodeGen/RISCV/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'RISCV' in config.root.targets:
1+
if not "RISCV" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/SPARC/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Sparc' in config.root.targets:
1+
if not "Sparc" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/SPIRV/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'SPIRV' in config.root.targets:
1+
if not "SPIRV" in config.root.targets:
22
config.unsupported = True
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
config.suffixes = [ '.ll', '.py' ]
1+
config.suffixes = [".ll", ".py"]
22

33
# These tests take on the order of seconds to run, so skip them unless
44
# we're running long tests.
5-
if 'long_tests' not in config.available_features:
5+
if "long_tests" not in config.available_features:
66
config.unsupported = True
77

8-
if not 'SystemZ' in config.root.targets:
8+
if not "SystemZ" in config.root.targets:
99
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'SystemZ' in config.root.targets:
1+
if not "SystemZ" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/Thumb/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'VE' in config.root.targets:
1+
if not "VE" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/VE/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'VE' in config.root.targets:
1+
if not "VE" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'WebAssembly' in config.root.targets:
1+
if not "WebAssembly" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/WinEH/lit.local.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# It should be possible to remove this override once all the bots have cycled
66
# cleanly.
7-
config.suffixes = ['.ll', '.test', '.txt']
7+
config.suffixes = [".ll", ".test", ".txt"]
88

99
# FIXME: Add Windows on ARM support to these tests.
10-
if not 'X86' in config.root.targets:
10+
if not "X86" in config.root.targets:
1111
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/X86/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True

llvm/test/CodeGen/XCore/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'XCore' in config.root.targets:
1+
if not "XCore" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AArch64' in config.root.targets:
1+
if not "AArch64" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AMDGPU' in config.root.targets:
1+
if not "AMDGPU" in config.root.targets:
22
config.unsupported = True

llvm/test/DebugInfo/ARM/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True

llvm/test/DebugInfo/BPF/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'BPF' in config.root.targets:
1+
if not "BPF" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
if not 'AArch64' in config.root.targets:
1+
if not "AArch64" in config.root.targets:
22
config.unsupported = True
3-
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True
3-
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'CSKY' in config.root.targets:
1+
if not "CSKY" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Lanai' in config.root.targets:
1+
if not "Lanai" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'AArch64' in config.root.targets:
1+
if not "AArch64" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'ARM' in config.root.targets:
1+
if not "ARM" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Hexagon' in config.root.targets:
1+
if not "Hexagon" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Mips' in config.root.targets:
1+
if not "Mips" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'SystemZ' in config.root.targets:
1+
if not "SystemZ" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'X86' in config.root.targets:
1+
if not "X86" in config.root.targets:
22
config.unsupported = True

llvm/test/DebugInfo/MIR/lit.local.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
config.suffixes = ['.mir']
1+
config.suffixes = [".mir"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'MSP430' in config.root.targets:
1+
if not "MSP430" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'Mips' in config.root.targets:
1+
if not "Mips" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'NVPTX' in config.root.targets:
1+
if not "NVPTX" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'PowerPC' in config.root.targets:
1+
if not "PowerPC" in config.root.targets:
22
config.unsupported = True
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
if not 'RISCV' in config.root.targets:
1+
if not "RISCV" in config.root.targets:
22
config.unsupported = True

0 commit comments

Comments
 (0)