1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s -fsanitize=thread -relaxed-aliasing -O1 | FileCheck %s
3 // Make sure we do not crash when relaxed-aliasing is on.
5 struct iterator
{ void *node
; };
9 pair(const iterator
&a
) : first(a
) {}
13 (void)pair(iterator());