strager created this revision.
strager added a reviewer: cfe-commits.
Herald added subscribers: chrib, kristof.beyls, javed.absar.

Both sides of this #if #include the same file. Drop the #if, leaving only the 
#include.

This commit should not change behaviour.


Repository:
  rC Clang

https://reviews.llvm.org/D45779

Files:
  test/CodeGen/arm-aapcs-vfp.c


Index: test/CodeGen/arm-aapcs-vfp.c
===================================================================
--- test/CodeGen/arm-aapcs-vfp.c
+++ test/CodeGen/arm-aapcs-vfp.c
@@ -17,11 +17,7 @@
 // RUN:   -ffreestanding \
 // RUN:   -emit-llvm -w -o - %s | FileCheck -check-prefix=CHECK64 %s
 
-#ifdef __arm64__
 #include <arm_neon.h>
-#else
-#include <arm_neon.h>
-#endif
 
 struct homogeneous_struct {
   float f[2];


Index: test/CodeGen/arm-aapcs-vfp.c
===================================================================
--- test/CodeGen/arm-aapcs-vfp.c
+++ test/CodeGen/arm-aapcs-vfp.c
@@ -17,11 +17,7 @@
 // RUN:   -ffreestanding \
 // RUN:   -emit-llvm -w -o - %s | FileCheck -check-prefix=CHECK64 %s
 
-#ifdef __arm64__
 #include <arm_neon.h>
-#else
-#include <arm_neon.h>
-#endif
 
 struct homogeneous_struct {
   float f[2];
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to