[llvm-commits] [llvm] r43412 - /llvm/trunk/test/CFrontend/unaligned-memcpy.c

Bill Wendling isanbard at gmail.com
Fri Oct 26 16:43:35 PDT 2007


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};
+}





More information about the llvm-commits mailing list