Skip to content

Commit 30dd4cf

Browse files
authored
Merge pull request travitch#104 from SRI-CSL/master
Synching up to start 2021
2 parents 012988b + aa5e2bb commit 30dd4cf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![WLLVM](img/dragon128x128.png?raw_true)Whole Program LLVM
22

3-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3+
[![License: MIT](https://img.shields.io/badge/License-MIT-blueviolet.svg)](https://opensource.org/licenses/MIT)
44
[![PyPI version](https://badge.fury.io/py/wllvm.svg)](https://badge.fury.io/py/wllvm)
55
[![Build Status](https://travis-ci.org/SRI-CSL/whole-program-llvm.svg?branch=master)](https://travis-ci.org/SRI-CSL/whole-program-llvm)
66
[![PyPI Statistics](https://img.shields.io/pypi/dm/wllvm.svg)](https://pypistats.org/packages/wllvm)
@@ -255,8 +255,8 @@ LTO Support
255255
-----------
256256

257257
In some situations it is desirable to pass certain flags to clang in the step that
258-
produces the bitcode. This can be fulfilled by setting the
259-
`LLVM_BITCODE_GENERATION_FLAGS` environment variable to the desired
258+
produces the bitcode. This can be fulfilled by setting the
259+
`LLVM_BITCODE_GENERATION_FLAGS` environment variable to the desired
260260
flags, for example `"-flto -fwhole-program-vtables"`.
261261

262262
Debugging

wllvm/arglistfilter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def __init__(self, inputList, exactMatches={}, patternMatches={}):
4747
'-v' : (0, ArgumentListFilter.compileOnlyCallback),
4848

4949
#warnings (apart from the regex below)
50-
'-w' : (0, ArgumentListFilter.compileOnlyCallback),
51-
'-W' : (0, ArgumentListFilter.compileOnlyCallback),
50+
'-w' : (0, ArgumentListFilter.compileUnaryCallback),
51+
'-W' : (0, ArgumentListFilter.compileUnaryCallback),
5252

5353

5454
#iam: if this happens, then we need to stop and think.

0 commit comments

Comments
 (0)