diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-28 18:54:39 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-28 18:54:39 +0000 |
commit | a23b91d542e336be5051ac54f394e860fb756911 (patch) | |
tree | 6828193532ce328f9e70dd3d033ede9c326a05ee /lib/CodeGen/CodeGenFunction.h | |
parent | aade589b2bb90a2ea5ba4942ba04e3104f1daf74 (diff) |
[ms-inline asm] Rename EmitGCCAsmStmt to EmitAsmStmt and have it accept
AsmStmts. This function is only used by GCCAsmStmts, however. Constraints need
to be properly computed before MSAsmStmts can use EmitAsmStmt. No functional
change intended.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index c74ef3021a..b96ee2e14a 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2001,7 +2001,7 @@ public: void EmitDefaultStmt(const DefaultStmt &S); void EmitCaseStmt(const CaseStmt &S); void EmitCaseStmtRange(const CaseStmt &S); - void EmitGCCAsmStmt(const GCCAsmStmt &S); + void EmitAsmStmt(const AsmStmt &S); void EmitMSAsmStmt(const MSAsmStmt &S); void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S); |