projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
789215d
)
Remove a function that has been dead since r313889.
author
Nico Weber
<thakis@chromium.org>
Wed, 15 Apr 2020 16:01:58 +0000
(12:01 -0400)
committer
Nico Weber
<thakis@chromium.org>
Wed, 15 Apr 2020 16:02:30 +0000
(12:02 -0400)
llvm/utils/lit/lit/util.py
patch
|
blob
|
history
diff --git
a/llvm/utils/lit/lit/util.py
b/llvm/utils/lit/lit/util.py
index
19942d0
..
d7afbda
100644
(file)
--- a/
llvm/utils/lit/lit/util.py
+++ b/
llvm/utils/lit/lit/util.py
@@
-12,13
+12,6
@@
import sys
import threading
-def norm_path(path):
- path = os.path.realpath(path)
- path = os.path.normpath(path)
- path = os.path.normcase(path)
- return path
-
-
def is_string(value):
try:
# Python 2 and Python 3 are different here.