print TLS segment

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176192 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Shankar Easwaran 2013-02-27 17:57:17 +00:00
parent d65dfd8342
commit 512685dacf

View File

@ -48,6 +48,9 @@ void printProgramHeaders(
case ELF::PT_PHDR:
outs() << " PHDR ";
break;
case ELF::PT_TLS:
outs() << " TLS ";
break;
default:
outs() << " UNKNOWN ";
}