print TLS segment
authorShankar Easwaran <shankare@codeaurora.org>
Wed, 27 Feb 2013 17:57:17 +0000 (17:57 +0000)
committerShankar Easwaran <shankare@codeaurora.org>
Wed, 27 Feb 2013 17:57:17 +0000 (17:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176192 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-objdump/ELFDump.cpp

index 72c512e0b0e488a5b27f178b9c2028776e4e4a66..bd1523133f554dbb2aa2a5c90c24c707307d3443 100644 (file)
@@ -48,6 +48,9 @@ void printProgramHeaders(
     case ELF::PT_PHDR:
       outs() << "    PHDR ";
       break;
+    case ELF::PT_TLS:
+      outs() << "    TLS ";
+      break;
     default:
       outs() << " UNKNOWN ";
     }