gas: support .half, .word and .dword directives in eBPF
[deliverable/binutils-gdb.git] / gas / config / tc-bpf.c
index 9318c3563be8813b279c8b72ee3ee74b21c50b19..3ebe81f3652f71b1cf5cd9b15c7822c6bf63ed58 100644 (file)
@@ -38,6 +38,9 @@ const char FLT_CHARS[]            = "fFdD";
 /* The target specific pseudo-ops which we support.  */
 const pseudo_typeS md_pseudo_table[] =
 {
+    { "half",      cons,              2 },
+    { "word",      cons,              4 },
+    { "dword",     cons,              8 },
     { NULL,         NULL,             0 }
 };
 
This page took 0.023784 seconds and 4 git commands to generate.