Remove dos line endings. Please remember to configure your windows SVN

clients to default text files to 'eol-native'.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chandler Carruth 2012-07-20 00:49:51 +00:00
Родитель e81ce256b6
Коммит 0ccd98dff0
1 изменённых файлов: 13 добавлений и 13 удалений

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

@ -1,13 +1,13 @@
// RUN: %clang_cc1 -fsyntax-only -Wall -pedantic -verify %s // RUN: %clang_cc1 -fsyntax-only -Wall -pedantic -verify %s
// RUN: cp %s %t // RUN: cp %s %t
// RUN: cp %S/fixit-include.h %T // RUN: cp %S/fixit-include.h %T
// RUN: not %clang_cc1 -fsyntax-only -fixit %t // RUN: not %clang_cc1 -fsyntax-only -fixit %t
// RUN: %clang_cc1 -Wall -pedantic %t // RUN: %clang_cc1 -Wall -pedantic %t
#include <fixit-include.h> // expected-error {{'fixit-include.h' file not found with <angled> include; use "quotes" instead}} #include <fixit-include.h> // expected-error {{'fixit-include.h' file not found with <angled> include; use "quotes" instead}}
#pragma does_not_exist // expected-warning {{unknown pragma ignored}} #pragma does_not_exist // expected-warning {{unknown pragma ignored}}
int main( void ) { int main( void ) {
return 0; return 0;
} }