[PATCH] D45779: [ARM] Remove redundant #if in test

strager via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 18 11:26:54 PDT 2018


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];


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45779.142969.patch
Type: text/x-patch
Size: 414 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180418/5bb69c33/attachment-0001.bin>


More information about the cfe-commits mailing list