bloomberg / clangmetatool

A framework for reusing code in Clang tools
https://bloomberg.github.io/clangmetatool/
Apache License 2.0
119 stars 25 forks source link

Fix bug in cstring constant propagation #43

Closed dbeer1 closed 5 years ago

dbeer1 commented 5 years ago

Describe your changes Constant propagation of c-strings was broken in some cases, null pointers would result in the value 'l' instead of being considered unresolved. Changed the code to no longer rely on the pretty-print value of a null pointer.

Testing performed Added unit test

CC: @ruoso