Commit of shame: Forgot a semicolon.

llvm-svn: 126971
diff --git a/SingleSource/UnitTests/ObjC/exceptions-4.m b/SingleSource/UnitTests/ObjC/exceptions-4.m
index 64154d7..cc992ed 100644
--- a/SingleSource/UnitTests/ObjC/exceptions-4.m
+++ b/SingleSource/UnitTests/ObjC/exceptions-4.m
@@ -13,7 +13,7 @@
       [array removeLastObject];
     }
   } @catch (NSException *e) {
-    exceptionThrown = YES
+    exceptionThrown = YES;
   }
 
   assert(enumerated == YES && exceptionThrown == YES);