aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Cabshelper.ml
diff options
context:
space:
mode:
authorBernhard Schommer <bschommer@users.noreply.github.com>2016-04-04 13:27:39 +0200
committerBernhard Schommer <bschommer@users.noreply.github.com>2016-04-04 13:27:39 +0200
commit1a02cbf4746bcbd059c35613d4a71cd127fbfa13 (patch)
treefebd5b7769e9577ce03917b1c51679a2eac88ce4 /cparser/Cabshelper.ml
parent8b0d5a0d291c66f05869c15f92539bd1d7082d3a (diff)
parent4e62a2c4b2c809ea020423e7e328ba96e379d64d (diff)
downloadcompcert-1a02cbf4746bcbd059c35613d4a71cd127fbfa13.tar.gz
compcert-1a02cbf4746bcbd059c35613d4a71cd127fbfa13.zip
Merge pull request #95 from AbsInt/noreturn
Added the _Noreturn keyword.
Diffstat (limited to 'cparser/Cabshelper.ml')
-rw-r--r--cparser/Cabshelper.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cparser/Cabshelper.ml b/cparser/Cabshelper.ml
index b4e6a082..958f242c 100644
--- a/cparser/Cabshelper.ml
+++ b/cparser/Cabshelper.ml
@@ -35,7 +35,7 @@ let rec isExtern = function
let rec isInline = function
[] -> false
- | SpecInline :: _ -> true
+ | (SpecFunction INLINE) :: _ -> true
| _ :: rest -> isInline rest
let rec isTypedef = function