From 6a887d22a17e0b18bb5b6b98278bcd0de902bb1d Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 15 Apr 2020 12:01:58 -0400 Subject: [PATCH] Remove a function that has been dead since r313889. --- llvm/utils/lit/lit/util.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/llvm/utils/lit/lit/util.py b/llvm/utils/lit/lit/util.py index 19942d0..d7afbda 100644 --- 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. -- 2.7.4