Move PICEnabled declaration here.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26271 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2006-02-18 00:06:03 +00:00
parent 012f241987
commit c9fdea915a

View File

@ -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