blob: 5f340c5bb670d75861303c69666318aa53f489f6 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm -o %t
Chris Lattnera9e63722007-12-12 04:13:20 +00002
3extern void go(const void *p);
4float v[2] = { 0.0, 1.0 };
5void foo(void) { go(v); }
6