diff options
| author | Anders Carlsson <andersca@mac.com> | 2009-01-18 01:56:57 +0000 |
|---|---|---|
| committer | Anders Carlsson <andersca@mac.com> | 2009-01-18 01:56:57 +0000 |
| commit | a79203be8566b4cc67d9bf1832c94fdf2f0a0d47 (patch) | |
| tree | 8ceadcca1bb6b56206d42fdb1911b1384ba18824 /clang/lib/CodeGen/CGStmt.cpp | |
| parent | bb70bf6dbbdaa88abf51bc62beab19eac015903f (diff) | |
| download | bcm5719-llvm-a79203be8566b4cc67d9bf1832c94fdf2f0a0d47.tar.gz bcm5719-llvm-a79203be8566b4cc67d9bf1832c94fdf2f0a0d47.zip | |
Add sema support for symbolic names in inline asm statements.
llvm-svn: 62441
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index d86c3f43891..04fc26dd895 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -980,7 +980,7 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) { S.begin_output_names(), S.end_output_names(), Info); - assert(result && "Failed to parse input constraint"); result=result; + assert(result && "Failed to parse input constraint"); if (i != 0 || S.getNumOutputs() > 0) Constraints += ','; |

