diff options
Diffstat (limited to 'test/FrontendC/block-copy.c')
-rw-r--r-- | test/FrontendC/block-copy.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/FrontendC/block-copy.c b/test/FrontendC/block-copy.c deleted file mode 100644 index c088f2d..0000000 --- a/test/FrontendC/block-copy.c +++ /dev/null @@ -1,20 +0,0 @@ -/* RUN: %llvmgcc %s -S -o - -O3 | grep {call.*memcpy} - - This should compile into a memcpy from a global, not 128 stores. */ - - - -void foo(); - -float bar() { - float lookupTable[] = {-1,-1,-1,0, -1,-1,0,-1, -1,-1,0,1, -1,-1,1,0, - -1,0,-1,-1, -1,0,-1,1, -1,0,1,-1, -1,0,1,1, - -1,1,-1,0, -1,1,0,-1, -1,1,0,1, -1,1,1,0, - 0,-1,-1,-1, 0,-1,-1,1, 0,-1,1,-1, 0,-1,1,1, - 1,-1,-1,0, 1,-1,0,-1, 1,-1,0,1, 1,-1,1,0, - 1,0,-1,-1, 1,0,-1,1, 1,0,1,-1, 1,0,1,1, - 1,1,-1,0, 1,1,0,-1, 1,1,0,1, 1,1,1,0, - 0,1,-1,-1, 0,1,-1,1, 0,1,1,-1, 0,1,1,1}; - foo(lookupTable); -} - |