Skip to content
Snippets Groups Projects
Commit 8aaef7c3 authored by Aaron Ballman's avatar Aaron Ballman
Browse files

Fixing a test case which was failing the MSVC build bots. When -std isn't...

Fixing a test case which was failing the MSVC build bots. When -std isn't specified with an MSVC build, it defaults to -std=c++11, which overrides the -x cuda option. In turn, this causes all CUDA language option checks to fail.

This fix is possibly temporary while we determine whether -x cuda should be considered along with -std=c++11 when setting language options.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209808 91177308-0d34-0410-b5e6-96231b3b80d8
parent be481708
No related branches found
No related tags found
No related merge requests found
// RUN: c-index-test -test-load-source all -x cuda %s | FileCheck %s // RUN: c-index-test -test-load-source all -x cuda -std=cuda %s | FileCheck %s
__attribute__((device)) void f_device(); __attribute__((device)) void f_device();
__attribute__((global)) void f_global(); __attribute__((global)) void f_global();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment