Simplify code a bit

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@87040 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.cpp b/lib/CodeGen/AsmPrinter/DwarfException.cpp
index bb33b8e..93cc012 100644
--- a/lib/CodeGen/AsmPrinter/DwarfException.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfException.cpp
@@ -485,10 +485,9 @@
           MarkedNoUnwind = false;
           break;
         }
-        if (F->doesNotThrow()) {
-          SawFunc = true;
-          MarkedNoUnwind = true;
-        }
+
+        MarkedNoUnwind = F->doesNotThrow();
+        SawFunc = true;
       }
     }
   }