[cfe-commits] r62042 - /cfe/trunk/lib/CodeGen/CodeGenFunction.h

Anders Carlsson andersca at mac.com
Sun Jan 11 11:40:10 PST 2009


Author: andersca
Date: Sun Jan 11 13:40:10 2009
New Revision: 62042

URL: http://llvm.org/viewvc/llvm-project?rev=62042&view=rev
Log:
Forgot to commit this

Modified:
    cfe/trunk/lib/CodeGen/CodeGenFunction.h

Modified: cfe/trunk/lib/CodeGen/CodeGenFunction.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenFunction.h?rev=62042&r1=62041&r2=62042&view=diff

==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenFunction.h (original)
+++ cfe/trunk/lib/CodeGen/CodeGenFunction.h Sun Jan 11 13:40:10 2009
@@ -17,6 +17,7 @@
 #include "clang/AST/Type.h"
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/SmallVector.h"
+#include "clang/Basic/TargetInfo.h"
 #include "clang/AST/Expr.h"
 #include "clang/AST/ExprCXX.h"
 #include "clang/AST/ExprObjC.h"
@@ -662,6 +663,10 @@
   /// \arg Args. See ABIArgInfo::Expand.
   void ExpandTypeToArgs(QualType Ty, RValue Src, 
                         llvm::SmallVector<llvm::Value*, 16> &Args);
+
+  llvm::Value* EmitAsmInput(const AsmStmt &S, TargetInfo::ConstraintInfo Info,
+                            const Expr *InputExpr, std::string &ConstraintStr);
+  
 };
 }  // end namespace CodeGen
 }  // end namespace clang





More information about the cfe-commits mailing list