summaryrefslogtreecommitdiff
path: root/test/msan/dso-origin.cc
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2015-03-02 19:34:27 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2015-03-02 19:34:27 +0000
commit1950443dcbd39b83083b1efc749ee71ce685c07b (patch)
tree394f7885465400fb3dcfbf635e098359423518d3 /test/msan/dso-origin.cc
parent99ed6a758a2993563f96f56d7ac6a51c64c5824a (diff)
[MSan] Remove explicit -m64 from RUN lines.
Target-specific flags should usually be configured by CMake/lit. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@230999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/msan/dso-origin.cc')
-rw-r--r--test/msan/dso-origin.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/msan/dso-origin.cc b/test/msan/dso-origin.cc
index ba008c007..7f6244984 100644
--- a/test/msan/dso-origin.cc
+++ b/test/msan/dso-origin.cc
@@ -1,7 +1,7 @@
// Build a library with origin tracking and an executable w/o origin tracking.
// Test that origin tracking is enabled at runtime.
-// RUN: %clangxx_msan -fsanitize-memory-track-origins -m64 -O0 %s -DBUILD_SO -fPIC -shared -o %t-so.so
-// RUN: %clangxx_msan -m64 -O0 %s %t-so.so -o %t && not %run %t 2>&1 | FileCheck %s
+// RUN: %clangxx_msan -fsanitize-memory-track-origins -O0 %s -DBUILD_SO -fPIC -shared -o %t-so.so
+// RUN: %clangxx_msan -O0 %s %t-so.so -o %t && not %run %t 2>&1 | FileCheck %s
#ifdef BUILD_SO