[llvm-commits] CVS: llvm/test/Regression/C++Frontend/2003-08-28-ForwardType.cpp 2003-08-28-SaveExprBug.cpp 2003-08-31-StructLayout.cpp 2003-09-30-NestedFunctionDecl.cpp 2003-10-27-VirtualBaseClassCrash.cpp 2003-11-04-ArrayConstructors.cpp 2004-03-15-CleanupsAndGotos.cpp 2004-06-08-LateTemplateInstantiation.cpp 2005-02-19-UnnamedVirtualThunkArgument.cpp 2005-02-20-BrokenReferenceTest.cpp
Misha Brukman
brukman at cs.uiuc.edu
Thu Apr 21 16:48:48 PDT 2005
Changes in directory llvm/test/Regression/C++Frontend:
2003-08-28-ForwardType.cpp updated: 1.4 -> 1.5
2003-08-28-SaveExprBug.cpp updated: 1.2 -> 1.3
2003-08-31-StructLayout.cpp updated: 1.2 -> 1.3
2003-09-30-NestedFunctionDecl.cpp updated: 1.2 -> 1.3
2003-10-27-VirtualBaseClassCrash.cpp updated: 1.2 -> 1.3
2003-11-04-ArrayConstructors.cpp updated: 1.3 -> 1.4
2004-03-15-CleanupsAndGotos.cpp updated: 1.5 -> 1.6
2004-06-08-LateTemplateInstantiation.cpp updated: 1.2 -> 1.3
2005-02-19-UnnamedVirtualThunkArgument.cpp updated: 1.1 -> 1.2
2005-02-20-BrokenReferenceTest.cpp updated: 1.1 -> 1.2
---
Log message:
Remove trailing whitespace
---
Diffs of the changes: (+33 -33)
2003-08-28-ForwardType.cpp | 4 +-
2003-08-28-SaveExprBug.cpp | 2 -
2003-08-31-StructLayout.cpp | 2 -
2003-09-30-NestedFunctionDecl.cpp | 4 +-
2003-10-27-VirtualBaseClassCrash.cpp | 2 -
2003-11-04-ArrayConstructors.cpp | 4 +-
2004-03-15-CleanupsAndGotos.cpp | 4 +-
2004-06-08-LateTemplateInstantiation.cpp | 2 -
2005-02-19-UnnamedVirtualThunkArgument.cpp | 40 ++++++++++++++---------------
2005-02-20-BrokenReferenceTest.cpp | 2 -
10 files changed, 33 insertions(+), 33 deletions(-)
Index: llvm/test/Regression/C++Frontend/2003-08-28-ForwardType.cpp
diff -u llvm/test/Regression/C++Frontend/2003-08-28-ForwardType.cpp:1.4 llvm/test/Regression/C++Frontend/2003-08-28-ForwardType.cpp:1.5
--- llvm/test/Regression/C++Frontend/2003-08-28-ForwardType.cpp:1.4 Sat Dec 4 17:21:41 2004
+++ llvm/test/Regression/C++Frontend/2003-08-28-ForwardType.cpp Thu Apr 21 18:48:37 2005
@@ -5,9 +5,9 @@
template<typename _CharT>
-struct stdio_filebuf
+struct stdio_filebuf
{ stdio_filebuf();
-
+
};
extern stdio_filebuf<char> buf_cout;
Index: llvm/test/Regression/C++Frontend/2003-08-28-SaveExprBug.cpp
diff -u llvm/test/Regression/C++Frontend/2003-08-28-SaveExprBug.cpp:1.2 llvm/test/Regression/C++Frontend/2003-08-28-SaveExprBug.cpp:1.3
--- llvm/test/Regression/C++Frontend/2003-08-28-SaveExprBug.cpp:1.2 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2003-08-28-SaveExprBug.cpp Thu Apr 21 18:48:37 2005
@@ -6,7 +6,7 @@
template<typename foo>
struct basic_filebuf {
char *instancevar;
-
+
void callee() {
instancevar += eback() != eback();
}
Index: llvm/test/Regression/C++Frontend/2003-08-31-StructLayout.cpp
diff -u llvm/test/Regression/C++Frontend/2003-08-31-StructLayout.cpp:1.2 llvm/test/Regression/C++Frontend/2003-08-31-StructLayout.cpp:1.3
--- llvm/test/Regression/C++Frontend/2003-08-31-StructLayout.cpp:1.2 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2003-08-31-StructLayout.cpp Thu Apr 21 18:48:37 2005
@@ -1,6 +1,6 @@
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
-// There is a HOLE in the derived2 object due to not wanting to place the two
+// There is a HOLE in the derived2 object due to not wanting to place the two
// baseclass instances at the same offset!
struct baseclass {};
Index: llvm/test/Regression/C++Frontend/2003-09-30-NestedFunctionDecl.cpp
diff -u llvm/test/Regression/C++Frontend/2003-09-30-NestedFunctionDecl.cpp:1.2 llvm/test/Regression/C++Frontend/2003-09-30-NestedFunctionDecl.cpp:1.3
--- llvm/test/Regression/C++Frontend/2003-09-30-NestedFunctionDecl.cpp:1.2 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2003-09-30-NestedFunctionDecl.cpp Thu Apr 21 18:48:37 2005
@@ -1,12 +1,12 @@
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
-// The C++ front-end thinks the two foo's are different, the LLVM emitter
+// The C++ front-end thinks the two foo's are different, the LLVM emitter
// thinks they are the same. The disconnect causes problems.
void foo() { }
void bar() {
void foo();
-
+
foo();
}
Index: llvm/test/Regression/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp
diff -u llvm/test/Regression/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp:1.2 llvm/test/Regression/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp:1.3
--- llvm/test/Regression/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp:1.2 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2003-10-27-VirtualBaseClassCrash.cpp Thu Apr 21 18:48:37 2005
@@ -7,7 +7,7 @@
void foo();
};
-template <class T>
+template <class T>
struct test : virtual super<int> {};
extern test<int> X;
Index: llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp
diff -u llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp:1.3 llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp:1.4
--- llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp:1.3 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2003-11-04-ArrayConstructors.cpp Thu Apr 21 18:48:37 2005
@@ -1,8 +1,8 @@
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
-struct Foo {
- Foo(int);
+struct Foo {
+ Foo(int);
~Foo();
};
void foo() {
Index: llvm/test/Regression/C++Frontend/2004-03-15-CleanupsAndGotos.cpp
diff -u llvm/test/Regression/C++Frontend/2004-03-15-CleanupsAndGotos.cpp:1.5 llvm/test/Regression/C++Frontend/2004-03-15-CleanupsAndGotos.cpp:1.6
--- llvm/test/Regression/C++Frontend/2004-03-15-CleanupsAndGotos.cpp:1.5 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2004-03-15-CleanupsAndGotos.cpp Thu Apr 21 18:48:37 2005
@@ -8,7 +8,7 @@
void foo() {
X v;
-
-TryAgain:
+
+TryAgain:
goto TryAgain;
}
Index: llvm/test/Regression/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp
diff -u llvm/test/Regression/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp:1.2 llvm/test/Regression/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp:1.3
--- llvm/test/Regression/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp:1.2 Sat Nov 6 16:29:57 2004
+++ llvm/test/Regression/C++Frontend/2004-06-08-LateTemplateInstantiation.cpp Thu Apr 21 18:48:37 2005
@@ -3,7 +3,7 @@
template<typename Ty>
-struct normal_iterator {
+struct normal_iterator {
int FIELD;
};
Index: llvm/test/Regression/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp
diff -u llvm/test/Regression/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp:1.1 llvm/test/Regression/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp:1.2
--- llvm/test/Regression/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp:1.1 Sat Feb 19 11:07:48 2005
+++ llvm/test/Regression/C++Frontend/2005-02-19-UnnamedVirtualThunkArgument.cpp Thu Apr 21 18:48:37 2005
@@ -1,22 +1,22 @@
// RUN: %llvmgxx -S %s -o /dev/null
-struct Foo {
- Foo();
- virtual ~Foo();
-};
-
-struct Bar {
- Bar();
- virtual ~Bar();
- virtual bool test(bool) const;
-};
-
-struct Baz : public Foo, public Bar {
- Baz();
- virtual ~Baz();
- virtual bool test(bool) const;
-};
-
-bool Baz::test(bool) const {
- return true;
-}
+struct Foo {
+ Foo();
+ virtual ~Foo();
+};
+
+struct Bar {
+ Bar();
+ virtual ~Bar();
+ virtual bool test(bool) const;
+};
+
+struct Baz : public Foo, public Bar {
+ Baz();
+ virtual ~Baz();
+ virtual bool test(bool) const;
+};
+
+bool Baz::test(bool) const {
+ return true;
+}
Index: llvm/test/Regression/C++Frontend/2005-02-20-BrokenReferenceTest.cpp
diff -u llvm/test/Regression/C++Frontend/2005-02-20-BrokenReferenceTest.cpp:1.1 llvm/test/Regression/C++Frontend/2005-02-20-BrokenReferenceTest.cpp:1.2
--- llvm/test/Regression/C++Frontend/2005-02-20-BrokenReferenceTest.cpp:1.1 Sun Feb 20 22:03:32 2005
+++ llvm/test/Regression/C++Frontend/2005-02-20-BrokenReferenceTest.cpp Thu Apr 21 18:48:37 2005
@@ -3,7 +3,7 @@
void test(unsigned char *b, int rb) {
typedef unsigned char imgfoo[10][rb];
imgfoo &br = *(imgfoo *)b;
-
+
br[0][0] = 1;
rb = br[0][0];
More information about the llvm-commits
mailing list