aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-01-18 01:56:57 +0000
committerAnders Carlsson <andersca@mac.com>2009-01-18 01:56:57 +0000
commit42e1ee0702d8267d632df0fdb5c479a582877c6f (patch)
treec03571441cb1bdec76f6cfcc86cfa84285ceffd0 /lib/CodeGen/CGStmt.cpp
parent353417af9d254d4fd0eb7d0a3ff71c4d8594ac58 (diff)
Add sema support for symbolic names in inline asm statements.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGStmt.cpp')
-rw-r--r--lib/CodeGen/CGStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp
index d86c3f4389..04fc26dd89 100644
--- a/lib/CodeGen/CGStmt.cpp
+++ b/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 += ',';