mirror of
https://github.com/danog/gllvm.git
synced 2024-11-26 22:34:47 +01:00
12 lines
156 B
C
12 lines
156 B
C
|
//https://llvm.org/docs/LinkTimeOptimization.html
|
||
|
#include <stdio.h>
|
||
|
#include "a.h"
|
||
|
|
||
|
void foo4(void) {
|
||
|
printf("Hi\n");
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
return foo1();
|
||
|
}
|