You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a MATLAB function contains calls to tic and/or toc and they do not have an empty list of arguments (e.g. tic()), the calls are not included in the TameIR output.
Example:
$ cat /tmp/test.m
function test(x)
tic;
toc;
end
$ ./McLabCore.sh -t /tmp/test.m
test
InterproceduralAnalysis:test
AnalysisNode: test([(double,[1, 1],REAL)]) --> []
% args: {x=(double,[1, 1],REAL)}
function [] = test(x)
end
% results: []
The text was updated successfully, but these errors were encountered:
If a MATLAB function contains calls to tic and/or toc and they do not have an empty list of arguments (e.g.
tic()
), the calls are not included in the TameIR output.Example:
The text was updated successfully, but these errors were encountered: