[llvm-commits] [test-suite] r126971 - /test-suite/trunk/SingleSource/UnitTests/ObjC/exceptions-4.m
Bill Wendling
isanbard at gmail.com
Thu Mar 3 16:14:31 PST 2011
Author: void
Date: Thu Mar 3 18:14:31 2011
New Revision: 126971
URL: http://llvm.org/viewvc/llvm-project?rev=126971&view=rev
Log:
Commit of shame: Forgot a semicolon.
Modified:
test-suite/trunk/SingleSource/UnitTests/ObjC/exceptions-4.m
Modified: test-suite/trunk/SingleSource/UnitTests/ObjC/exceptions-4.m
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/UnitTests/ObjC/exceptions-4.m?rev=126971&r1=126970&r2=126971&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/UnitTests/ObjC/exceptions-4.m (original)
+++ test-suite/trunk/SingleSource/UnitTests/ObjC/exceptions-4.m Thu Mar 3 18:14:31 2011
@@ -13,7 +13,7 @@
[array removeLastObject];
}
} @catch (NSException *e) {
- exceptionThrown = YES
+ exceptionThrown = YES;
}
assert(enumerated == YES && exceptionThrown == YES);
More information about the llvm-commits
mailing list