Skip to content
Snippets Groups Projects
Commit 80d07899 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[kernel] change warn key for asm clobber warning

parent 993bb693
No related branches found
No related tags found
No related merge requests found
...@@ -201,7 +201,7 @@ let () = set_warn_status wkey_audit Log.Werror ...@@ -201,7 +201,7 @@ let () = set_warn_status wkey_audit Log.Werror
let wkey_parser_unsupported = register_warn_category "parser:unsupported" let wkey_parser_unsupported = register_warn_category "parser:unsupported"
let wkey_asm = register_warn_category "assembly" let wkey_asm = register_warn_category "asm:clobber"
(* ************************************************************************* *) (* ************************************************************************* *)
(** {2 Specialised functors for building kernel parameters} *) (** {2 Specialised functors for building kernel parameters} *)
......
...@@ -54,9 +54,9 @@ ...@@ -54,9 +54,9 @@
"enabled": [ "enabled": [
"*", "CERT", "CERT:EXP", "CERT:EXP:46", "CERT:MSC", "CERT:MSC:37", "*", "CERT", "CERT:EXP", "CERT:EXP:46", "CERT:MSC", "CERT:MSC:37",
"CERT:MSC:38", "acsl-extension", "annot", "annot:missing-spec", "CERT:MSC:38", "acsl-extension", "annot", "annot:missing-spec",
"annot:multi-from", "annot-error", "assembly", "audit", "check", "annot:multi-from", "annot-error", "asm", "asm:clobber", "audit",
"check:volatile", "cmdline", "ghost", "ghost:bad-use", "inline", "check", "check:volatile", "cmdline", "ghost", "ghost:bad-use",
"linker", "linker:drop-conflicting-unused", "parser", "inline", "linker", "linker:drop-conflicting-unused", "parser",
"parser:conditional-feature", "parser:unsupported", "pp", "parser:conditional-feature", "parser:unsupported", "pp",
"pp:compilation-db", "typing", "typing:implicit-conv-void-ptr", "pp:compilation-db", "typing", "typing:implicit-conv-void-ptr",
"typing:implicit-function-declaration", "typing:implicit-function-declaration",
......
[kernel] Parsing tests/syntax/gnu-asm-aesni.c (with preprocessing) [kernel] Parsing tests/syntax/gnu-asm-aesni.c (with preprocessing)
[kernel:assembly] tests/syntax/gnu-asm-aesni.c:93: Warning: [kernel:asm:clobber] tests/syntax/gnu-asm-aesni.c:93: Warning:
Clobber list contains "memory" argument. Assuming no side effects beyond those mentioned in operands. Clobber list contains "memory" argument. Assuming no side effects beyond those mentioned in operands.
/* Generated by Frama-C */ /* Generated by Frama-C */
#include "__fc_builtin.h" #include "__fc_builtin.h"
......
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