Home | History | Annotate | Download | only in CodeGenCXX
      1 // RUN: %clang_cc1 %s -emit-llvm -o %t
      2 
      3 int* a = __null;
      4 int b = __null;
      5 
      6 void f() {
      7   int* c = __null;
      8   int d = __null;
      9 }
     10