From 6aad91a43e26118c824d976661077819265d9bc0 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Mon, 10 Dec 2007 23:44:32 +0000 Subject: [PATCH] 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 --- CodeGen/CGExprScalar.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 + using namespace clang; using namespace CodeGen; using llvm::Value; -- 2.50.1