1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Move PICEnabled declaration here.

llvm-svn: 26271
This commit is contained in:
Evan Cheng 2006-02-18 00:06:03 +00:00
parent bd36f029ef
commit bba9078fed

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