[Lldb-commits] [lldb] e82866d - [lldb][AArch64] Correct compile options for Neon corefile

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 6 05:39:16 PDT 2020


Author: David Spickett
Date: 2020-08-06T13:39:09+01:00
New Revision: e82866d5d9eef913252833789acda04ef8389e52

URL: https://github.com/llvm/llvm-project/commit/e82866d5d9eef913252833789acda04ef8389e52
DIFF: https://github.com/llvm/llvm-project/commit/e82866d5d9eef913252833789acda04ef8389e52.diff

LOG: [lldb][AArch64] Correct compile options for Neon corefile

SVE is not required, it has its own test. Note that
there is no "+neon" so "+simd" is used instead.

Also rename the file to match the name of the corefile
it produces.

Reviewed By: omjavaid

Differential Revision: https://reviews.llvm.org/D85134

Added: 
    lldb/test/API/functionalities/postmortem/elf-core/linux-aarch64-neon.c

Modified: 
    

Removed: 
    lldb/test/API/functionalities/postmortem/elf-core/aarch64-neon.c


################################################################################
diff  --git a/lldb/test/API/functionalities/postmortem/elf-core/aarch64-neon.c b/lldb/test/API/functionalities/postmortem/elf-core/linux-aarch64-neon.c
similarity index 75%
rename from lldb/test/API/functionalities/postmortem/elf-core/aarch64-neon.c
rename to lldb/test/API/functionalities/postmortem/elf-core/linux-aarch64-neon.c
index e5742d2e44b7..475e1ac93f88 100644
--- a/lldb/test/API/functionalities/postmortem/elf-core/aarch64-neon.c
+++ b/lldb/test/API/functionalities/postmortem/elf-core/linux-aarch64-neon.c
@@ -1,6 +1,6 @@
-// compile with -march=armv8-a+sve on compatible aarch64 compiler
-// linux-aarch64-sve.core was generated by: aarch64-linux-gnu-gcc-8
-// commandline: -march=armv8-a+sve -nostdlib -static -g linux-aarch64-sve.c
+// compile with -march=armv8-a+simd on compatible aarch64 compiler
+// linux-aarch64-neon.core was generated by: aarch64-linux-gnu-gcc-8
+// commandline: -march=armv8-a+simd -nostdlib -static -g linux-aarch64-neon.c
 static void bar(char *boom) {
   char F = 'b';
   asm volatile("fmov     d0,  #0.5\n\t");


        


More information about the lldb-commits mailing list