Skip to content

Commit

Permalink
Suppress pass-failed warnings (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
SoniEx2 authored Mar 25, 2024
1 parent 923f60f commit ff03168
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/run-spec-wasm2c.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,9 @@ def Compile(cc, c_filename, out_dir, use_c11, *cflags):
'-Wno-ignored-optimization-argument',
'-Wno-tautological-constant-out-of-range-compare',
'-Wno-infinite-recursion',
# simde calls for pragma clang loop vectorize(enable),
# which can generate warnings if the optimization pass fails.
'-Wno-pass-failed',
'-fno-optimize-sibling-calls',
'-frounding-math', '-fsignaling-nans',
'-D_DEFAULT_SOURCE']
Expand Down

0 comments on commit ff03168

Please sign in to comment.