Remove a function that has been dead since r313889.
authorNico Weber <thakis@chromium.org>
Wed, 15 Apr 2020 16:01:58 +0000 (12:01 -0400)
committerNico Weber <thakis@chromium.org>
Wed, 15 Apr 2020 16:02:30 +0000 (12:02 -0400)
llvm/utils/lit/lit/util.py

index 19942d0..d7afbda 100644 (file)
@@ -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.