break testcase over multiple lines to make it easier to read.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2011-02-18 01:25:14 +00:00
Родитель 21ac10d5e6
Коммит 2fda14afb1
1 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -3,8 +3,12 @@
void xx();
int a() {
A:if (1) xx();
return ^{A:return 1;}();
A:
if (1) xx();
return ^{
A: return 1;
}();
}
int b() {
A: return ^{int a; A:return 1;}();
@ -15,5 +19,9 @@ int d() {
}
int c() {
goto A; return ^{ A:return 1;}(); // expected-error {{use of undeclared label 'A'}}
goto A; // expected-error {{use of undeclared label 'A'}}
return ^{
A:
return 1;
}();
}