blob: fba76ad21a1466b136f466da884e339e4d96d595 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001/* RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3 This should compile into a memcpy from a global, not 128 stores. */
4
5
6
7void foo();
8
9float bar() {
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);
20}