瀏覽代碼

Work around GCC bug 106436

* src/tar.c (optloc_eq): Use ‘assume’ to pacify GCC bug.
Paul Eggert 2 年之前
父節點
當前提交
4e9e55fbf9
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/tar.c

+ 1 - 0
src/tar.c

@@ -959,6 +959,7 @@ option_set_in_cl (int id)
 static int
 optloc_eq (struct option_locus *a, struct option_locus *b)
 {
+  assume (a);  /* Pacify GCC bug 106436.  */
   if (a->source != b->source)
     return 0;
   if (a->source == OPTS_COMMAND_LINE)