Remove some more hard CR-LF lines. These were particularly weird as they were

only a few lines of the file. Also set their properties to have explicitly
native eol sytle.

llvm-svn: 130124
This commit is contained in:
Chandler Carruth 2011-04-25 07:09:43 +00:00
parent 6a3f25e58d
commit bc0f9aeac3
3 changed files with 6 additions and 6 deletions

View File

@ -65,7 +65,7 @@ Decl *Parser::ParseCXXInlineMethodDef(AccessSpecifier AS, ParsingDeclarator &D,
FD = FunTmpl->getTemplatedDecl();
else
FD = cast<FunctionDecl>(FnD);
Actions.CheckForFunctionRedefinition(FD);
Actions.CheckForFunctionRedefinition(FD);
LateParsedTemplateMap[FD] = LPT;
Actions.MarkAsLateParsedTemplate(FD);

View File

@ -43,7 +43,7 @@ char x = FOO(a);
typedef enum E { e1 };

View File

@ -113,9 +113,9 @@ void f() {
}
// bug 6895 - Vectorl literal casting confusion.
vector char v1 = (vector char)((vector int)(1, 2, 3, 4));
vector char v2 = (vector char)((vector float)(1.0f, 2.0f, 3.0f, 4.0f));
vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd'));
vector int v4 = (vector int)(1, 2, 3, 4);
vector char v1 = (vector char)((vector int)(1, 2, 3, 4));
vector char v2 = (vector char)((vector float)(1.0f, 2.0f, 3.0f, 4.0f));
vector char v3 = (vector char)((vector int)('a', 'b', 'c', 'd'));
vector int v4 = (vector int)(1, 2, 3, 4);
vector float v5 = (vector float)(1.0f, 2.0f, 3.0f, 4.0f);
vector char v6 = (vector char)((vector int)(1+2, -2, (int)(2.0 * 3), -(5-3)));