Oracle Solaris Studio 12.2: dbx コマンドによるデバッグ

組み込み関数

dbx は、Fortran の組み込み関数 (SPARC プラットフォームおよび x86 プラットフォームのみ) を認識します。

dbx での組み込み関数を示します。


demo% cat ShowIntrinsic.f
    INTEGER i
    i = -2
    END
(dbx) stop in MAIN
(2) stop in MAIN
(dbx) run
Running: shi
(process id 18019)
stopped in MAIN at line 2 in file "shi.f"
    2              i = -2
(dbx) whatis abs
Generic intrinsic function: "abs"
(dbx) print i
i = 0
(dbx) step
stopped in MAIN at line 3 in file "shi.f"
    3              end
(dbx) print i
i = -2
(dbx) print abs(1)
abs(i) = 2
(dbx)