diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-01-17 10:40:54 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-01-17 10:40:54 +0000 |
commit | 292a007c946cce20badbe52dbae06d5758bfad42 (patch) | |
tree | 998b5f1278729c912c0197de5edf3f90af7757c9 /include/llvm/Target | |
parent | 5032e5a61381437174e035de2a7dd728978f7bd5 (diff) | |
download | external_llvm-292a007c946cce20badbe52dbae06d5758bfad42.zip external_llvm-292a007c946cce20badbe52dbae06d5758bfad42.tar.gz external_llvm-292a007c946cce20badbe52dbae06d5758bfad42.tar.bz2 |
Document flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetOptions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 89234de..6bfe005 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -55,6 +55,9 @@ namespace llvm { /// target FP instructions. extern bool UseSoftFloat; + /// NoZerosInBSS - By default some codegens place zero-initialized data to + /// .bss section. This flag disables such behaviour (necessary, e.g. for + /// crt*.o compiling). extern bool NoZerosInBSS; } // End llvm namespace |