mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-12 23:26:05 +00:00

plugin. Unfortunately the test is currently XFAILed because of missing changes to the clang driver. Differential Revision: https://reviews.llvm.org/D67124 llvm-svn: 370931
9 lines
70 B
C
9 lines
70 B
C
#include "foo.h"
|
|
|
|
void stop() {}
|
|
|
|
int foo() {
|
|
stop();
|
|
return 0;
|
|
}
|