Skip to content

Commit 6381c25

Browse files
committed
Fix for issue #17 over at gllvm. Thanks @hongxuchen
1 parent 8f4b8e9 commit 6381c25

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

wllvm/arglistfilter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
250250
r'^-U.+$' : (0, ArgumentListFilter.compileUnaryCallback),
251251
r'^-Wl,.+$' : (0, ArgumentListFilter.linkUnaryCallback),
252252
r'^-W(?!l,).*$' : (0, ArgumentListFilter.compileUnaryCallback),
253+
r'^-fsanitize=.+$' : (0, ArgumentListFilter.compileLinkUnaryCallback),
253254
r'^-f.+$' : (0, ArgumentListFilter.compileUnaryCallback),
254255
r'^-rtlib=.+$' : (0, ArgumentListFilter.linkUnaryCallback),
255256
r'^-std=.+$' : (0, ArgumentListFilter.compileUnaryCallback),

0 commit comments

Comments
 (0)