Author: void
Date: Fri Oct 26 18:43:35 2007
New Revision: 43412

URL: http://llvm.org/viewvc/llvm-project?rev=43412&view=rev
Log:
Test to make sure that if we have an unaligned memcpy, it will still compile.


Added:
    llvm/trunk/test/CFrontend/unaligned-memcpy.c

Added: llvm/trunk/test/CFrontend/unaligned-memcpy.c
URL: 
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/unaligned-memcpy.c?rev=43412&view=auto

==============================================================================
--- llvm/trunk/test/CFrontend/unaligned-memcpy.c (added)
+++ llvm/trunk/test/CFrontend/unaligned-memcpy.c Fri Oct 26 18:43:35 2007
@@ -0,0 +1,5 @@
+// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
+
+void bork() {
+  char Qux[33] = {0};
+}


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to