[llvm] 06fe76c - [ASan][NewPM] Fix byref-args.ll under NPM

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 18 10:51:34 PDT 2020


Author: Arthur Eubanks
Date: 2020-09-18T10:50:53-07:00
New Revision: 06fe76cc4f5972b04dd4ad7b9dcb4425a73dccba

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

LOG: [ASan][NewPM] Fix byref-args.ll under NPM

Added: 
    

Modified: 
    llvm/test/Instrumentation/AddressSanitizer/byref-args.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/Instrumentation/AddressSanitizer/byref-args.ll b/llvm/test/Instrumentation/AddressSanitizer/byref-args.ll
index df2eeb4c1847..277424c62f27 100644
--- a/llvm/test/Instrumentation/AddressSanitizer/byref-args.ll
+++ b/llvm/test/Instrumentation/AddressSanitizer/byref-args.ll
@@ -1,4 +1,5 @@
-; RUN: opt < %s -asan -S | FileCheck %s
+; RUN: opt < %s -asan -S -enable-new-pm=0 | FileCheck %s
+; RUN: opt < %s -passes='asan-function-pipeline' -S | FileCheck %s
 
 ; Test that for call instructions, the byref arguments are not
 ; instrumented, as no copy is implied.


        


More information about the llvm-commits mailing list