[Lldb-commits] [lldb] cf7bfd6 - [lldb][AArch64] Remove armv8.3-a flag from tagged memory read test
    David Spickett via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Thu Jan 13 06:25:25 PST 2022
    
    
  
Author: David Spickett
Date: 2022-01-13T14:25:18Z
New Revision: cf7bfd6d059e58263594858e21b5547acabae568
URL: https://github.com/llvm/llvm-project/commit/cf7bfd6d059e58263594858e21b5547acabae568
DIFF: https://github.com/llvm/llvm-project/commit/cf7bfd6d059e58263594858e21b5547acabae568.diff
LOG: [lldb][AArch64] Remove armv8.3-a flag from tagged memory read test
This was left over from when I had used some pointer authentication
instructions to sign the pointer. Then I realised that simply setting
the top byte is enough to prove the ABI plugin is being called.
Top byte ignore is a feature of the armv8-a architecure and doesn't
need any extra compiler flags.
Added: 
    
Modified: 
    lldb/test/API/linux/aarch64/tagged_memory_read/Makefile
Removed: 
    
################################################################################
diff  --git a/lldb/test/API/linux/aarch64/tagged_memory_read/Makefile b/lldb/test/API/linux/aarch64/tagged_memory_read/Makefile
index c6ea179d22524..10495940055b6 100644
--- a/lldb/test/API/linux/aarch64/tagged_memory_read/Makefile
+++ b/lldb/test/API/linux/aarch64/tagged_memory_read/Makefile
@@ -1,4 +1,3 @@
 C_SOURCES := main.c
-CFLAGS_EXTRAS := -march=armv8.3-a
 
 include Makefile.rules
        
    
    
More information about the lldb-commits
mailing list