diff options
author | Anders Carlsson <andersca@mac.com> | 2009-01-11 19:40:10 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-01-11 19:40:10 +0000 |
commit | c8c7b187adcd989e01a9fba1ebead6c2abd770c9 (patch) | |
tree | 3331e64e4989c4dfe681e7ef5499847cd454d96c /lib/CodeGen/CodeGenFunction.h | |
parent | 634717238844cf3f51039411be1b27fe1fac622e (diff) |
Forgot to commit this
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62042 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 8437f29fac..3d0c2a2fdb 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -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 @@ private: /// \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 |