diff options
Diffstat (limited to 'llvm/test/FrontendC/unaligned-memcpy.c')
-rw-r--r-- | llvm/test/FrontendC/unaligned-memcpy.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/test/FrontendC/unaligned-memcpy.c b/llvm/test/FrontendC/unaligned-memcpy.c new file mode 100644 index 00000000000..e5d810f3ace --- /dev/null +++ b/llvm/test/FrontendC/unaligned-memcpy.c @@ -0,0 +1,5 @@ +// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc + +void bork() { + char Qux[33] = {0}; +} |