C++ linker presentation
This commit is contained in:
9
cpplinker/08_lto/main.cpp
Normal file
9
cpplinker/08_lto/main.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <iostream>
|
||||
|
||||
double heavy_compute(double);
|
||||
|
||||
int main() {
|
||||
double r = heavy_compute(1.0);
|
||||
std::cout << "result = " << r << "\n";
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user