there are now shared dynamic lifetime variables

git-svn-id: svn+ssh://svn.cprover.org/srv/svn/cbmc/trunk@2321 6afb6bc1-c8e4-404c-8f48-9ae832c5b171
This commit is contained in:
kroening 2013-04-05 14:42:06 +00:00
parent c76ebd5172
commit bf21b5ee1d
1 changed files with 3 additions and 3 deletions

View File

@ -97,12 +97,12 @@ public:
class symbol_exprt symbol_expr() const; class symbol_exprt symbol_expr() const;
bool is_shared() const inline bool is_shared() const
{ {
return is_static_lifetime && !is_thread_local; return !is_thread_local;
} }
bool is_procedure_local() const inline bool is_procedure_local() const
{ {
return !is_static_lifetime; return !is_static_lifetime;
} }