diff options
author | Cedric Venet <cedric.venet@laposte.net> | 2009-02-14 20:20:19 +0000 |
---|---|---|
committer | Cedric Venet <cedric.venet@laposte.net> | 2009-02-14 20:20:19 +0000 |
commit | 08438133daa4d531f3eeb375e7b3457a90bcf02a (patch) | |
tree | d9e5f2f399d43c9a4067d5f4223f6284343b6f11 /clang/test/Parser/cxx-condition.cpp | |
parent | 99bed6fd21ca033074897160af1d971f6b5a9249 (diff) | |
download | bcm5719-llvm-08438133daa4d531f3eeb375e7b3457a90bcf02a.tar.gz bcm5719-llvm-08438133daa4d531f3eeb375e7b3457a90bcf02a.zip |
Add svn:eol-style=native to some files
Correct two files with inconsistent lines endings.
llvm-svn: 64564
Diffstat (limited to 'clang/test/Parser/cxx-condition.cpp')
-rw-r--r-- | clang/test/Parser/cxx-condition.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/clang/test/Parser/cxx-condition.cpp b/clang/test/Parser/cxx-condition.cpp index 9ffdf79ba01..2a77193f259 100644 --- a/clang/test/Parser/cxx-condition.cpp +++ b/clang/test/Parser/cxx-condition.cpp @@ -1,11 +1,11 @@ -// RUN: clang -parse-noop -verify %s
-
-void f() {
- int a;
- while (a) ;
- while (int x) ; // expected-error {{expected '=' after declarator}}
- while (float x = 0) ;
- if (const int x = a) ;
- switch (int x = a+10) {}
- for (; int x = ++a; ) ;
-}
+// RUN: clang -parse-noop -verify %s + +void f() { + int a; + while (a) ; + while (int x) ; // expected-error {{expected '=' after declarator}} + while (float x = 0) ; + if (const int x = a) ; + switch (int x = a+10) {} + for (; int x = ++a; ) ; +} |