From: Evan Cheng Date: Sat, 18 Feb 2006 00:06:03 +0000 (+0000) Subject: Move PICEnabled declaration here. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c9fdea915aaeb1343c3e9825886ce18efdb91994;p=oota-llvm.git Move PICEnabled declaration here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26271 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index e208eba6418..31fdeb8fed2 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -40,6 +40,12 @@ namespace llvm { /// produce results that are "less precise" than IEEE allows. This includes /// use of X86 instructions like FSIN and FCOS instead of libcalls. extern bool UnsafeFPMath; + + /// PICEnabled - This flag is enabled when the -enable-pic flag is specified + /// on the command line. When this flag is on, the code generator produces + /// position independant code. + extern bool PICEnabled; + } // End llvm namespace #endif