Remove HAS_TLS define.

llvm-svn: 106786
This commit is contained in:
Eric Christopher 2010-06-24 20:41:41 +00:00
parent d43e0094b7
commit ca10da8839
1 changed files with 0 additions and 4 deletions

View File

@ -460,10 +460,6 @@ static void InitializePredefinedMacros(const TargetInfo &TI,
if (FEOpts.ProgramAction == frontend::RunAnalysis)
Builder.defineMacro("__clang_analyzer__");
// Define __HAS_TLS__ if the target supports it.
if (TI.isTLSSupported())
Builder.defineMacro("__HAS_TLS__");
// Get other target #defines.
TI.getTargetDefines(LangOpts, Builder);
}