mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
197 B
Python
12 lines
197 B
Python
#Weird formatting is so that all uses and defn are on separate lines
|
|
#to assist checking test results.
|
|
|
|
def with_phi(
|
|
cond):
|
|
if cond:
|
|
l0 = 0
|
|
else:
|
|
l0 = 1
|
|
return l0
|
|
|