1 // RUN: %clang_cc1 -emit-llvm -o - %s -std=c++11
4 void *f1(unsigned long l
) {
5 return reinterpret_cast<void *>(l
);
9 return reinterpret_cast<unsigned long>(nullptr);
12 unsigned long f3(void *p
) {
13 return reinterpret_cast<unsigned long>(p
);
18 f4(reinterpret_cast<int*&>(u
));