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