aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/backend/symaddr.c
AgeCommit message (Collapse)AuthorFilesLines
2017-11-20testsuite: fix: remove unneeded './' before commandsLuc Van Oostenryck1-1/+1
Some testcases have their command specified as './<command name>' but the './' part is unneeded as all commands are first prefixed with '../' before being run. Furthermore, the presence of these './' inhibit simple filtering of the disabled commands. Fix this by stripping the './' where it was used. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
2017-11-17llvm: take care of degenerated rvaluesLuc Van Oostenryck1-1/+0
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
2017-11-17llvm: give correct type to binopsLuc Van Oostenryck1-0/+8
Pointer arithmetic and/or simplification can mixup pointer and integer types. Fix this by adding casts before all non-floating point binops and adjust the result type if needed to match the instructio. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
2017-11-17llvm: add test cases for symbol's addressLuc Van Oostenryck1-0/+63
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>