[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / clang / test / CodeGen / 2002-02-18-StaticData.c
blobd0cf52477252158ab6e3fefcb8057a39053c47cc
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
4 double FOO = 17;
5 double BAR = 12.0;
6 float XX = 12.0f;
8 static char *procnames[] = {
9 "EXIT"
12 void *Data[] = { &FOO, &BAR, &XX };