diff options
author | Eric Fiselier <eric@efcs.ca> | 2019-04-04 15:37:10 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2019-04-04 15:37:10 +0000 |
commit | 9d75d88d30718e6c0b5d876218e18ed923f853b9 (patch) | |
tree | c1b9ecfb12f21d65f8779b5c7f2d065b514001e4 /libcxx | |
parent | 17648b848ef6cc37547c6290d8960eb97fd6dab5 (diff) | |
download | bcm5719-llvm-9d75d88d30718e6c0b5d876218e18ed923f853b9.tar.gz bcm5719-llvm-9d75d88d30718e6c0b5d876218e18ed923f853b9.zip |
Handle TLS values in sym_check
llvm-svn: 357705
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/utils/libcxx/sym_check/extract.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/libcxx/sym_check/extract.py b/libcxx/utils/libcxx/sym_check/extract.py index 6089ec2342a..07299891792 100644 --- a/libcxx/utils/libcxx/sym_check/extract.py +++ b/libcxx/utils/libcxx/sym_check/extract.py @@ -160,7 +160,7 @@ class ReadElfExtractor(object): 'type': parts[3], 'is_defined': (parts[6] != 'UND') } - assert new_sym['type'] in ['OBJECT', 'FUNC', 'NOTYPE'] + assert new_sym['type'] in ['OBJECT', 'FUNC', 'NOTYPE', 'TLS'] if new_sym['name'] in extract_ignore_names: continue if new_sym['type'] == 'NOTYPE': |