silence a couple unused variable 'result' warnings.
llvm-svn: 62674
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp
index cd5626d..4adff72 100644
--- a/clang/lib/CodeGen/CGStmt.cpp
+++ b/clang/lib/CodeGen/CGStmt.cpp
@@ -863,7 +863,7 @@
bool result = Target.resolveSymbolicName(Constraint,
OutputNamesBegin,
OutputNamesEnd, Index);
- assert(result && "Could not resolve symbolic name");
+ assert(result && "Could not resolve symbolic name"); result=result;
Result += llvm::utostr(Index);
break;
}
@@ -993,7 +993,7 @@
bool result = Target.validateInputConstraint(InputConstraint.c_str(),
S.begin_output_names(),
S.end_output_names(),
- Info);
+ Info); result=result;
assert(result && "Failed to parse input constraint");
if (i != 0 || S.getNumOutputs() > 0)