From ffdb5fbfb6e61d3cf78ab39256e77dc8ff946717 Mon Sep 17 00:00:00 2001 From: weiyu Date: Mon, 29 Jul 2019 17:56:55 -0700 Subject: [PATCH] fix bug --- CDSPass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDSPass.cpp b/CDSPass.cpp index 6ec6dd2..432d98f 100644 --- a/CDSPass.cpp +++ b/CDSPass.cpp @@ -746,7 +746,7 @@ bool CDSPass::instrumentAtomicCall(CallInst *CI, const DataLayout &DL) { return true; } else if (funName.contains("atomic") && - funName.contains("EEEE5store") ) { + funName.contains("store") ) { // does this version of call always have an atomic order as an argument? Value *OrigVal = parameters[1]; -- 2.34.1