summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2014-01-27 04:22:24 +0000
committerRui Ueyama <ruiu@google.com>2014-01-27 04:22:24 +0000
commit878e272310be219829d6dffab626bad038d87f6d (patch)
tree888f1121d1d210947494070ddc65251eb1125ee6 /include
parent810a9cffb4c926c73e9aed78a7cc117a1abeeebe (diff)
downloadllvm-878e272310be219829d6dffab626bad038d87f6d.tar.gz
llvm-878e272310be219829d6dffab626bad038d87f6d.tar.bz2
llvm-878e272310be219829d6dffab626bad038d87f6d.tar.xz
Rename IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VA.
editbin.exe and link.exe both accepts /highentropyva option to set this bit, so doing s/VIRTUAL_ADDRESS/VA/ should make sense. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/COFF.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/COFF.h b/include/llvm/Support/COFF.h
index fde545f008..e99e36cc56 100644
--- a/include/llvm/Support/COFF.h
+++ b/include/llvm/Support/COFF.h
@@ -532,7 +532,7 @@ namespace COFF {
enum DLLCharacteristics {
/// ASLR with 64 bit address space.
- IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VIRTUAL_ADDRESS = 0x0020,
+ IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VA = 0x0020,
/// DLL can be relocated at load time.
IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE = 0x0040,
/// Code integrity checks are enforced.