File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -122,16 +122,14 @@ def have_host_out_of_process_jit_feature_support():
122122 if not clang_repl_exe :
123123 return False
124124
125- testcode = b'\n ' .join ([
126- b"int i = 0;" ,
127- b"%quit"
128- ])
125+ testcode = b"\n " .join ([b"int i = 0;" , b"%quit" ])
129126
130127 try :
131128 clang_repl_cmd = subprocess .run (
132129 [clang_repl_exe , "-orc-runtime" , "-oop-executor" ],
133- stdout = subprocess .PIPE , stderr = subprocess .PIPE ,
134- input = testcode
130+ stdout = subprocess .PIPE ,
131+ stderr = subprocess .PIPE ,
132+ input = testcode ,
135133 )
136134 except OSError :
137135 return False
@@ -194,7 +192,7 @@ def have_host_clang_repl_cuda():
194192 config .available_features .add ('host-supports-cuda' )
195193
196194 if have_host_out_of_process_jit_feature_support ():
197- config .available_features .add (' host-supports-out-of-process-jit' )
195+ config .available_features .add (" host-supports-out-of-process-jit" )
198196
199197if config .clang_staticanalyzer :
200198 config .available_features .add ("staticanalyzer" )
You can’t perform that action at this time.
0 commit comments