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