From 8587270a739ee30c926a76d5657e65e85b560f6e Mon Sep 17 00:00:00 2001 From: Momchil Velikov Date: Wed, 15 Aug 2018 12:22:08 +0000 Subject: [PATCH] Use .cpp extension for certain tests instead of .cc The tests `CodeGen/aapcs[64]-align.cc` are not run since files with a `.cc` suffix aren't recognisze as tests. This patch renames the above two files to `.cpp`. Differential Revision: https://reviews.llvm.org/D46013 Comitting as obvious. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@339766 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/{aapcs-align.cc => aapcs-align.cpp} | 0 test/CodeGen/{aapcs64-align.cc => aapcs64-align.cpp} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename test/CodeGen/{aapcs-align.cc => aapcs-align.cpp} (100%) rename test/CodeGen/{aapcs64-align.cc => aapcs64-align.cpp} (100%) diff --git a/test/CodeGen/aapcs-align.cc b/test/CodeGen/aapcs-align.cpp similarity index 100% rename from test/CodeGen/aapcs-align.cc rename to test/CodeGen/aapcs-align.cpp diff --git a/test/CodeGen/aapcs64-align.cc b/test/CodeGen/aapcs64-align.cpp similarity index 100% rename from test/CodeGen/aapcs64-align.cc rename to test/CodeGen/aapcs64-align.cpp -- 2.50.1