Add a return statement to the func with an int return type.

llvm-svn: 195897
This commit is contained in:
Kaelyn Uhrain 2013-11-28 00:13:38 +00:00
parent f6109e4ad7
commit 297a1381ad
1 changed files with 1 additions and 0 deletions

View File

@ -178,5 +178,6 @@ namespace PR14373 {
};
int call() {
exec_func(Type());
return 0;
}
}