Skip to content
Snippets Groups Projects
Commit d850d021 authored by Boris Yakobowski's avatar Boris Yakobowski
Browse files

[E-acsl] Use isPointerType instead of isPtrType

parent edc7c991
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,6 @@ let init_mpz () = ...@@ -42,7 +42,6 @@ let init_mpz () =
(* ********************************************************************** *) (* ********************************************************************** *)
let dkey = Options.dkey_analysis let dkey = Options.dkey_analysis
module Env: sig module Env: sig
val default_varinfos: Varinfo.Hptset.t option -> Varinfo.Hptset.t val default_varinfos: Varinfo.Hptset.t option -> Varinfo.Hptset.t
val apply: (kernel_function -> 'a) -> kernel_function -> 'a val apply: (kernel_function -> 'a) -> kernel_function -> 'a
...@@ -191,7 +190,7 @@ module rec Transfer ...@@ -191,7 +190,7 @@ module rec Transfer
Some Some
(Varinfo.Hptset.union (Env.default_varinfos s1) (Env.default_varinfos s2)) (Varinfo.Hptset.union (Env.default_varinfos s1) (Env.default_varinfos s2))
let is_ptr_or_array ty = Cil.isPtrType ty || Cil.isArrayType ty let is_ptr_or_array ty = Cil.isPointerType ty || Cil.isArrayType ty
let is_ptr_or_array_exp e = let is_ptr_or_array_exp e =
let ty = Cil.typeOf e in let ty = Cil.typeOf e in
......
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