You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
197 B
18 lines
197 B
4 months ago
|
#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;
|
||
|
}
|
||
|
|