zap trailing whitespace

llvm-svn: 116572
This commit is contained in:
Gabor Greif 2010-10-15 08:48:51 +00:00
parent 7e1dd672fb
commit de1f58919a
1 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ void test7() {
void test9(short v) {
unsigned i, old;
old = __sync_fetch_and_add(); // expected-error {{too few arguments to function call}}
old = __sync_fetch_and_add(&old); // expected-error {{too few arguments to function call}}
old = __sync_fetch_and_add((unsigned*)0, 42i); // expected-warning {{imaginary constants are an extension}}
@ -56,14 +56,14 @@ void test9(short v) {
void test10(void) __attribute__((noreturn));
void test10(void) {
__asm__("int3");
__asm__("int3");
__builtin_unreachable();
// No warning about falling off the end of a noreturn function.
}
void test11(int X) {
switch (X) {
switch (X) {
case __builtin_eh_return_data_regno(0): // constant foldable.
break;
}
@ -101,4 +101,4 @@ int test16() {
return __builtin_constant_p() + // expected-error{{too few arguments}}
__builtin_constant_p(1, 2); // expected-error {{too many arguments}}
}