[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / block-copy.c
blob4679fe19b78f8b231ac77e8c3fea55a55bd8f59d
1 /* RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
3 This should compile into a memcpy from a global, not 128 stores. */
7 void foo(float *);
9 float bar(void) {
10 float lookupTable[] = {-1,-1,-1,0, -1,-1,0,-1, -1,-1,0,1, -1,-1,1,0,
11 -1,0,-1,-1, -1,0,-1,1, -1,0,1,-1, -1,0,1,1,
12 -1,1,-1,0, -1,1,0,-1, -1,1,0,1, -1,1,1,0,
13 0,-1,-1,-1, 0,-1,-1,1, 0,-1,1,-1, 0,-1,1,1,
14 1,-1,-1,0, 1,-1,0,-1, 1,-1,0,1, 1,-1,1,0,
15 1,0,-1,-1, 1,0,-1,1, 1,0,1,-1, 1,0,1,1,
16 1,1,-1,0, 1,1,0,-1, 1,1,0,1, 1,1,1,0,
17 0,1,-1,-1, 0,1,-1,1, 0,1,1,-1, 0,1,1,1};
18 // CHECK: memcpy
19 foo(lookupTable);