From dceadaf8dfa7f8c13288c7eabbc5835d5a721812 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Fri, 21 Dec 2007 23:33:44 +0000 Subject: [PATCH] Fix silly typo in the FP CEP handling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45300 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/CBackend/CBackend.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 54a5f426cbf..9b9b4e513ec 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -851,6 +851,7 @@ void CWriter::printConstant(Constant *CPV) { if (NeedsClosingParens) Out << "))"; Out << ')'; + return; } default: cerr << "CWriter Error: Unhandled constant expression: " -- 2.34.1