diff --git a/.github/workflows/tests/profiler.sh b/.github/workflows/tests/profiler.sh index 1faf054a1..ec3f769d3 100755 --- a/.github/workflows/tests/profiler.sh +++ b/.github/workflows/tests/profiler.sh @@ -23,7 +23,7 @@ function test_discopopPass { cp ${DISCOPOP_SRC}/scripts/dp-fmap . ./dp-fmap clang++ -g -c -O0 -S -emit-llvm -fno-discard-value-names "$1" -o out.ll || return 1 - opt-11 -S -load=${DISCOPOP_INSTALL}/libi/LLVMDiscoPoP.so --DiscoPoP out.ll -o out_dp.ll --fm-path FileMapping.txt || return 1 + opt-11 -S -load=${DISCOPOP_INSTALL}/libi/LLVMDiscoPoP.so --DiscoPoP out.ll -o out_dp.ll || return 1 clang++ out_dp.ll -o out_prof -L${DISCOPOP_INSTALL}/rtlib -lDiscoPoP_RT -lpthread || return 1 ./out_prof || return 1 }