diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-23 20:00:18 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-23 20:00:18 +0000 |
commit | 42b60551eff3a424e191b293bfd606559dc96bff (patch) | |
tree | fcfc2120bdd36127598d9f19831a28277518d0e9 /lib/CodeGen/CodeGenFunction.h | |
parent | b66529d04727dc686b97ea3d937fc9785792f505 (diff) |
[ms-inline asm] Remove an unused argument. This logic can now be reused by the
ms-style inline asms.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 0b7748b3c6..5855555782 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2552,12 +2552,10 @@ private: SmallVector<llvm::Value*, 16> &Args, llvm::FunctionType *IRFuncTy); - llvm::Value* EmitAsmInput(const AsmStmt &S, - const TargetInfo::ConstraintInfo &Info, + llvm::Value* EmitAsmInput(const TargetInfo::ConstraintInfo &Info, const Expr *InputExpr, std::string &ConstraintStr); - llvm::Value* EmitAsmInputLValue(const AsmStmt &S, - const TargetInfo::ConstraintInfo &Info, + llvm::Value* EmitAsmInputLValue(const TargetInfo::ConstraintInfo &Info, LValue InputValue, QualType InputType, std::string &ConstraintStr); |