Displaying 1 result from an estimated 1 matches for "6848136f".
2016 Mar 08
2
FileCheck: combining -DAG and -NOT
If you look at the FileCheck documentation page:
http://llvm.org/docs/CommandGuide/FileCheck.html
you'll find this intriguing example of combining -DAG with -NOT
(slightly amended to avoid some potential confusion):
; CHECK-DAG: BEFORE
; CHECK-NOT: BETWEEN
; CHECK-DAG: AFTER
The page says this will reject the sequence "AFTER BEFORE", which is
correct. It's intuitively obvious