Skip to content
Snippets Groups Projects
Commit b14e0625 authored by Kostyantyn Vorobyov's avatar Kostyantyn Vorobyov
Browse files

Fixed indentation issues in e-acsl-gcc.sh

parent 947ece45
No related branches found
No related tags found
No related merge requests found
...@@ -144,16 +144,16 @@ do ...@@ -144,16 +144,16 @@ do
;; ;;
# Redirect all output to a given file # Redirect all output to a given file
--logfile|-s) --logfile|-s)
shift; shift;
exec > $1 exec > $1
exec 2> $1 exec 2> $1
shift; shift;
;; ;;
# Pass an option to a Frama-C invocation # Pass an option to a Frama-C invocation
--frama-c-extra|-F) --frama-c-extra|-F)
shift; shift;
FRAMAC_FLAGS="$FRAMAC_FLAGS $1" FRAMAC_FLAGS="$FRAMAC_FLAGS $1"
shift; shift;
;; ;;
# Do compile instrumented code # Do compile instrumented code
--compile|-c) --compile|-c)
...@@ -254,21 +254,21 @@ do ...@@ -254,21 +254,21 @@ do
OPTION_BUILTINS="" OPTION_BUILTINS=""
;; ;;
-D|--debug-log) -D|--debug-log)
shift; shift;
OPTION_DEBUG_LOG_MACRO="-DE_ACSL_DEBUG_LOG=$1" OPTION_DEBUG_LOG_MACRO="-DE_ACSL_DEBUG_LOG=$1"
shift; shift;
;; ;;
# Supply Frama-C executable name # Supply Frama-C executable name
-I|--frama-c) -I|--frama-c)
shift; shift;
OPTION_FRAMAC="$1" OPTION_FRAMAC="$1"
shift; shift;
;; ;;
# Supply GCC executable name # Supply GCC executable name
-G|--gcc) -G|--gcc)
shift; shift;
OPTION_CC="$1" OPTION_CC="$1"
shift; shift;
;; ;;
# A memory model to link against # A memory model to link against
-m|--memory-model) -m|--memory-model)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment