468663ddbb
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
18 lines
197 B
C++
18 lines
197 B
C++
#include "instrprof-comdat.h"
|
|
int g;
|
|
extern int bar(int);
|
|
|
|
int main() {
|
|
|
|
FOO<int> Foo;
|
|
|
|
int Res = Foo.DoIt(10);
|
|
|
|
if (Res > 10)
|
|
g = bar(10);
|
|
else
|
|
g = bar(1) + bar(2);
|
|
return 0;
|
|
}
|
|
|