diff options
author | Ted Kremenek <kremenek@apple.com> | 2007-12-10 23:44:32 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2007-12-10 23:44:32 +0000 |
commit | 6aad91a43e26118c824d976661077819265d9bc0 (patch) | |
tree | c552dcc567b9d261ff9d7431fff43a8d0dba9ab8 | |
parent | 2fdc3749097a581567dbd9fe66c48c0458bd3e34 (diff) |
Added missing inclusion of stdarg.h. Now CGExprScalar.cpp
compiles again on Linux.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44821 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | CodeGen/CGExprScalar.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CodeGen/CGExprScalar.cpp b/CodeGen/CGExprScalar.cpp index cb0599ca93..d088195db9 100644 --- a/CodeGen/CGExprScalar.cpp +++ b/CodeGen/CGExprScalar.cpp @@ -19,6 +19,8 @@ #include "llvm/GlobalVariable.h" #include "llvm/Intrinsics.h" #include "llvm/Support/Compiler.h" +#include <stdarg.h> + using namespace clang; using namespace CodeGen; using llvm::Value; |