Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Driver/cuda-no-sanitizers.cu @ 221:79ff65ed7e25
LLVM12 Original
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Jun 2021 19:15:29 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
rev | line source |
---|---|
150 | 1 // Check that -fsanitize=foo doesn't get passed down to device-side |
2 // compilation. | |
3 // | |
4 // REQUIRES: clang-driver | |
5 // | |
6 // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 -fsanitize=address %s 2>&1 | \ | |
7 // RUN: FileCheck %s | |
8 | |
9 // CHECK-NOT: error: unsupported option '-fsanitize=address' | |
10 // CHECK-DAG: "-fcuda-is-device" | |
11 // CHECK-NOT: "-fsanitize=address" | |
12 // CHECK-DAG: "-triple" "x86_64-unknown-linux-gnu" | |
13 // CHECK: "-fsanitize=address" |