[llvm-commits] [llvm-gcc-4.2] r104284 - /llvm-gcc-4.2/trunk/gcc/config/arm/arm.c

Bob Wilson bob.wilson at apple.com
Thu May 20 14:55:45 PDT 2010


Author: bwilson
Date: Thu May 20 16:55:45 2010
New Revision: 104284

URL: http://llvm.org/viewvc/llvm-project?rev=104284&view=rev
Log:
Add missing definition of V1DI_pointer_node (only relevant when not configured
with --enable-llvm).

Modified:
    llvm-gcc-4.2/trunk/gcc/config/arm/arm.c

Modified: llvm-gcc-4.2/trunk/gcc/config/arm/arm.c
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/config/arm/arm.c?rev=104284&r1=104283&r2=104284&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/gcc/config/arm/arm.c (original)
+++ llvm-gcc-4.2/trunk/gcc/config/arm/arm.c Thu May 20 16:55:45 2010
@@ -17156,6 +17156,8 @@
   tree V4HI_pointer_node = build_pointer_type (V4HI_type_node);
   tree V2SI_pointer_node = build_pointer_type (V2SI_type_node);
   tree V2SF_pointer_node = build_pointer_type (V2SF_type_node);
+  /* LLVM LOCAL use v1di instead of di mode */
+  tree V1DI_pointer_node = build_pointer_type (V1DI_type_node);
   tree V16QI_pointer_node = build_pointer_type (V16QI_type_node);
   tree V8HI_pointer_node = build_pointer_type (V8HI_type_node);
   tree V4SI_pointer_node = build_pointer_type (V4SI_type_node);





More information about the llvm-commits mailing list