[cfe-commits] r42089 - /cfe/trunk/Sema/SemaDecl.cpp

Hartmut Kaiser hartmut.kaiser at gmail.com
Tue Sep 18 05:17:01 PDT 2007


Author: hkaiser
Date: Tue Sep 18 07:16:59 2007
New Revision: 42089

URL: http://llvm.org/viewvc/llvm-project?rev=42089&view=rev
Log:
alloca.h doesn't exist on Windows.

Modified:
    cfe/trunk/Sema/SemaDecl.cpp

Modified: cfe/trunk/Sema/SemaDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Sema/SemaDecl.cpp?rev=42089&r1=42088&r2=42089&view=diff

==============================================================================
--- cfe/trunk/Sema/SemaDecl.cpp (original)
+++ cfe/trunk/Sema/SemaDecl.cpp Tue Sep 18 07:16:59 2007
@@ -22,8 +22,11 @@
 #include "clang/Lex/IdentifierTable.h"
 #include "clang/Basic/LangOptions.h"
 #include "clang/Basic/TargetInfo.h"
+#include "llvm/Config/config.h" 
 #include "llvm/ADT/SmallSet.h"
+#if !defined(LLVM_ON_WIN32)
 #include <alloca.h>
+#endif
 using namespace clang;
 
 Sema::DeclTy *Sema::isTypeName(const IdentifierInfo &II, Scope *S) const {





More information about the cfe-commits mailing list