diff --git a/sapfor/experts/Sapfor_2017/CMakeLists.txt b/sapfor/experts/Sapfor_2017/CMakeLists.txt index 438cb1a..107753c 100644 --- a/sapfor/experts/Sapfor_2017/CMakeLists.txt +++ b/sapfor/experts/Sapfor_2017/CMakeLists.txt @@ -226,6 +226,8 @@ set(CFG _src/CFGraph/IR.cpp _src/CFGraph/live_variable_analysis.h _src/CFGraph/private_variables_analysis.cpp _src/CFGraph/private_variables_analysis.h + _src/CFGraph/IRSSAForm.cpp + _src/CFGraph/IRSSAForm.h ) set(DATA_FLOW diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.exe b/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.exe deleted file mode 100644 index 901e2f6..0000000 Binary files a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.exe and /dev/null differ diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.exp b/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.exp deleted file mode 100644 index 1a4ffbc..0000000 Binary files a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.exp and /dev/null differ diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.lib b/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.lib deleted file mode 100644 index 8adfff1..0000000 Binary files a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.lib and /dev/null differ diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.pdb b/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.pdb deleted file mode 100644 index 8c30ccd..0000000 Binary files a/sapfor/experts/Sapfor_2017/_bin/Debug/Sapfor_F.pdb and /dev/null differ diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/dvm.proj b/sapfor/experts/Sapfor_2017/_bin/Debug/dvm.proj deleted file mode 100644 index 3860a9e..0000000 --- a/sapfor/experts/Sapfor_2017/_bin/Debug/dvm.proj +++ /dev/null @@ -1 +0,0 @@ -jac.f.dep diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/jac.f b/sapfor/experts/Sapfor_2017/_bin/Debug/jac.f deleted file mode 100644 index 66f9591..0000000 --- a/sapfor/experts/Sapfor_2017/_bin/Debug/jac.f +++ /dev/null @@ -1,32 +0,0 @@ - program do_while_loop - implicit none - - integer :: i, j, n - - n = 5 - i = 1 - - print *, 'DO WHILE loop:' - do while (i <= n) - print *, 'i = ', i - i = i + 1 - end do - - print *, 'Nested DO loop:' - do i = 1, n - do j = 1, n - print *, 'i = ', i, ', j = ', j - end do - end do - - print *, 'Implicit loop with GOTO:' - i = 1 - -25 if (i > n) goto 32 - print *, 'i = ', i - i = i + 1 - goto 25 - -32 continue - - end program do_while_loop diff --git a/sapfor/experts/Sapfor_2017/_bin/Debug/jac.f.dep b/sapfor/experts/Sapfor_2017/_bin/Debug/jac.f.dep deleted file mode 100644 index 17c3e9d..0000000 Binary files a/sapfor/experts/Sapfor_2017/_bin/Debug/jac.f.dep and /dev/null differ