From c4cf3daad85a70b8937e1d7e67bee1feb275f9b9 Mon Sep 17 00:00:00 2001 From: Shoaib Meenai Date: Tue, 1 May 2018 20:38:05 +0000 Subject: [PATCH] [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 llvm-svn: 331305 --- clang/test/CodeGen/arm-aapcs-vfp.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/clang/test/CodeGen/arm-aapcs-vfp.c b/clang/test/CodeGen/arm-aapcs-vfp.c index 38044cbb1e23..ba5a969b0edc 100644 --- a/clang/test/CodeGen/arm-aapcs-vfp.c +++ b/clang/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 -#else -#include -#endif struct homogeneous_struct { float f[2];