summaryrefslogtreecommitdiff
path: root/source/val/validate_adjacency.cpp
AgeCommit message (Collapse)AuthorFilesLines
2018-08-02Combine ordered_instruction loops in validation. (#1782)dan sinclair1-46/+46
There are several validation passes which loop over all ordered instructions. This CL combines those into a single loop, calling each pass as needed.
2018-07-31Fix disassembly line for adjacency validations. (#1751)dan sinclair1-3/+3
Previously the adjacency messages would output the last line of the file as the disassembly. This is incorrect, as we have an instruction they can be attached too. This CL fixes the messages to attach to the correct line number.
2018-07-11Move validation files to val/ directory (#1692)dan sinclair1-0/+86
This CL moves the various validate files into the val/ directory with the rest of the validation infrastructure. This matches how opt/ is setup with the passes with the infrastructure.