diff options
author | emaste <emaste@FreeBSD.org> | 2014-03-19 20:46:02 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-03-19 20:46:02 +0000 |
commit | 3b6e18f61d87eb8530acbfd755029489e94b9f9b (patch) | |
tree | 5e61a6cafbe86471ad5504270f2b9b7603613a28 /contrib/llvm/include/llvm/Support | |
parent | 75535b28ab3b9f15489297f4f112d1119b249031 (diff) | |
download | FreeBSD-src-3b6e18f61d87eb8530acbfd755029489e94b9f9b.zip FreeBSD-src-3b6e18f61d87eb8530acbfd755029489e94b9f9b.tar.gz |
MFC r258005: Merge upstream LLVM r192118:
Formally added an explicit enum for DWARF TLS support. No functionality
change.
Sponsored by: DARPA, AFRL
Diffstat (limited to 'contrib/llvm/include/llvm/Support')
-rw-r--r-- | contrib/llvm/include/llvm/Support/Dwarf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/llvm/include/llvm/Support/Dwarf.h b/contrib/llvm/include/llvm/Support/Dwarf.h index b52914f..2491b4c 100644 --- a/contrib/llvm/include/llvm/Support/Dwarf.h +++ b/contrib/llvm/include/llvm/Support/Dwarf.h @@ -484,6 +484,9 @@ enum dwarf_constants { DW_OP_lo_user = 0xe0, DW_OP_hi_user = 0xff, + // Extensions for GNU-style thread-local storage. + DW_OP_GNU_push_tls_address = 0xe0, + // Extensions for Fission proposal. DW_OP_GNU_addr_index = 0xfb, DW_OP_GNU_const_index = 0xfc, |