Fix a transformation bug where two scopes share a common instrution to hoist.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
- Build Status
Buildable 31257 Build 31256: arc lint + arc unit
Event Timeline
Comment Actions
lgtm
lib/Transforms/Instrumentation/ControlHeightReduction.cpp | ||
---|---|---|
1444 | why is this check not kicking in? |
lib/Transforms/Instrumentation/ControlHeightReduction.cpp | ||
---|---|---|
1444 | This check is to avoid hoisting the same instruction more than once. So, it won't detect this case. |
lib/Transforms/Instrumentation/ControlHeightReduction.cpp | ||
---|---|---|
1444 | Typo: insert *per scope* in above sentence. |
why is this check not kicking in?