The original patch got reverted because it broke `check-lldb` on a clean build. This fixes that. llvm-svn: 374201
13 lines
138 B
C
13 lines
138 B
C
#ifndef FUNCTION_LEVEL_LINKING_TEST_H
|
|
#define FUNCTION_LEVEL_LINKING_TEST_H
|
|
|
|
int bar() {
|
|
return 0;
|
|
}
|
|
|
|
int baz() {
|
|
return 0;
|
|
}
|
|
|
|
#endif
|