diff options
author | bloodstalker <thabogre@gmail.com> | 2017-12-16 13:31:54 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-12-16 13:31:54 +0000 |
commit | 453ccbcb228b7f39adf087bfe955c770e4640f64 (patch) | |
tree | 730b6b5fbcf8e7aaf65df822ac2c8c70417f3dd2 /mutator_aux.cpp | |
parent | wip, added methods for dealing with filename changes to obfuscator (diff) | |
download | mutator-453ccbcb228b7f39adf087bfe955c770e4640f64.tar.gz mutator-453ccbcb228b7f39adf087bfe955c770e4640f64.zip |
obfuscator should handle macro expansions just fine now, also there was no rewriter for macro expansion so added one and added a test folder for obfuscator, also added a new method for getting the spellingloc to aux methods
Diffstat (limited to 'mutator_aux.cpp')
-rw-r--r-- | mutator_aux.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mutator_aux.cpp b/mutator_aux.cpp index 9eac0dd..d6400f2 100644 --- a/mutator_aux.cpp +++ b/mutator_aux.cpp @@ -77,6 +77,12 @@ SourceLocation SourceLocationHasMacro(SourceLocation __sl, Rewriter &__rewrite) return __sl; } } + +SourceLocation getSLSpellingLoc(SourceLocation __sl, Rewriter &__rewrite) +{ + if (__sl.isMacroID()) {return __rewrite.getSourceMgr().getSpellingLoc(__sl);} + else {return __sl;} +} /*********************************************************************************************************************/ /*********************************************************************************************************************/ /*********************************************************************************************************************/ |