[llvm] 54d7fde - llvm-ifs doc: Replace a utf-8 char by a more classic one

Sylvestre Ledru via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 10 13:45:19 PST 2022


Author: Sylvestre Ledru
Date: 2022-03-10T22:45:05+01:00
New Revision: 54d7fde46e8a0e425245e18732c2a78e64fa7b35

URL: https://github.com/llvm/llvm-project/commit/54d7fde46e8a0e425245e18732c2a78e64fa7b35
DIFF: https://github.com/llvm/llvm-project/commit/54d7fde46e8a0e425245e18732c2a78e64fa7b35.diff

LOG: llvm-ifs doc: Replace a utf-8 char by a more classic one

Fails on old python (like on ubuntu bionic) otherwise with:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 2130: ordinal not in range(128)

Added: 
    

Modified: 
    llvm/docs/CommandGuide/llvm-ifs.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/CommandGuide/llvm-ifs.rst b/llvm/docs/CommandGuide/llvm-ifs.rst
index 34db332a8d3d2..0e81806ec985a 100644
--- a/llvm/docs/CommandGuide/llvm-ifs.rst
+++ b/llvm/docs/CommandGuide/llvm-ifs.rst
@@ -59,7 +59,7 @@ by the :program:`llvm-ifs`:
 
   + ``Type``: Whether the symbol is an object, function, no-type, thread local storage, or unknown. Symbol types not explicitly supported are mapped as unknown to improve signal-to-noise ratio.
 
-  + ``Size``: The size of the symbol in question, doesn’t apply to functions, and is optional for NoType symbols.
+  + ``Size``: The size of the symbol in question, doesn't apply to functions, and is optional for NoType symbols.
 
   + ``Undefined``: Whether or not the symbol is defined in this shared object file.
 


        


More information about the llvm-commits mailing list