mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 01:15:50 +08:00
9 lines
101 B
C
9 lines
101 B
C
|
|
#include "baz.h"
|
||
|
|
|
||
|
|
#include <math.h>
|
||
|
|
|
||
|
|
int baz(int j) {
|
||
|
|
int k = sqrt(j);
|
||
|
|
return k; // break here
|
||
|
|
}
|