Update cpp/ql/test/library-tests/dataflow/dataflow-tests/flowOut.cpp

Co-authored-by: Mathias Vorreiter Pedersen <mathiasvp@github.com>
This commit is contained in:
Alexander Eyers-Taylor
2023-10-30 14:04:45 +00:00
committed by GitHub
parent 60f3598da9
commit b8d45ae927

View File

@@ -16,5 +16,5 @@ void modify_copy(int* ptr) { // $ ast-def=ptr
void test_output() {
int x = 0;
modify_copy(&x);
sink(x); // $ ir
sink(x); // $ SPURIOUS: ir
}