Fix final linking errors

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6707 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-16 12:27:12 +00:00
parent cb12c508cb
commit 905e7344b6
2 changed files with 3 additions and 6 deletions

View File

@ -10,10 +10,7 @@ struct bar : public foo {
bar();
};
//int bar::X() { return 0; }
bar::bar() {
}
bar::bar() { }
foo::foo() { }
int main() { return 0; }

View File

@ -1,4 +1,4 @@
void bar();
void bar(){}
void foo() {
struct TEST {