summaryrefslogtreecommitdiffstats
path: root/test/OpenMP/target_parallel_messages.cpp
diff options
context:
space:
mode:
authorSamuel Antao <sfantao@us.ibm.com>2016-03-14 15:57:41 +0000
committerSamuel Antao <sfantao@us.ibm.com>2016-03-14 15:57:41 +0000
commit463a8d110532f9514deda244c1ab63b610e9b1df (patch)
tree083d5c6623022889ec264b526bfd15241a370b25 /test/OpenMP/target_parallel_messages.cpp
parent6295c65c958246efc59136f9e5f5f8c621da1203 (diff)
[OpenMP] Replace offloading option that start with -o with -fo.
Summary: The current offloading implementation is using -omptargets and -omp-host-ir-file-path options in the frontend. This causes the user a lot of trouble due to to the conflicts with the -o option. E.g. if the user misspells omptargets he will end up with a file with a weird name. This patches replaces these two options with -fomptargets and -fomp-host-ir-file-path to avoid these issues, and it is also more consistent with the other options like -fopenmp. Reviewers: hfinkel, carlo.bertolli, arpith-jacob, kkwli0, ABataev Subscribers: cfe-commits, caomhin, fraggamuffin Differential Revision: http://reviews.llvm.org/D18112 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@263442 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/OpenMP/target_parallel_messages.cpp')
-rw-r--r--test/OpenMP/target_parallel_messages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/OpenMP/target_parallel_messages.cpp b/test/OpenMP/target_parallel_messages.cpp
index 6fc83ecdfe..c5801406e2 100644
--- a/test/OpenMP/target_parallel_messages.cpp
+++ b/test/OpenMP/target_parallel_messages.cpp
@@ -1,5 +1,5 @@
// RUN: %clang_cc1 -verify -fopenmp -std=c++11 -o - %s
-// RUN: not %clang_cc1 -fopenmp -std=c++11 -omptargets=aaa-bbb-ccc-ddd -o - %s 2>&1 | FileCheck %s
+// RUN: not %clang_cc1 -fopenmp -std=c++11 -fomptargets=aaa-bbb-ccc-ddd -o - %s 2>&1 | FileCheck %s
// CHECK: error: OpenMP target is invalid: 'aaa-bbb-ccc-ddd'
void foo() {