r331305 - [ARM] Remove redundant #if in test. NFC
Shoaib Meenai via cfe-commits
cfe-commits at lists.llvm.org
Tue May 1 13:38:05 PDT 2018
Author: smeenai
Date: Tue May 1 13:38:05 2018
New Revision: 331305
URL: http://llvm.org/viewvc/llvm-project?rev=331305&view=rev
Log:
[ARM] Remove redundant #if in test. NFC
Both sides of this #if #include the same file. Drop the #if, leaving only the #include.
Patch by Matt Glazar.
Differential Revision: https://reviews.llvm.org/D45779
Modified:
cfe/trunk/test/CodeGen/arm-aapcs-vfp.c
Modified: cfe/trunk/test/CodeGen/arm-aapcs-vfp.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/arm-aapcs-vfp.c?rev=331305&r1=331304&r2=331305&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/arm-aapcs-vfp.c (original)
+++ cfe/trunk/test/CodeGen/arm-aapcs-vfp.c Tue May 1 13:38:05 2018
@@ -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];
More information about the cfe-commits
mailing list