Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Driver/cuda-no-sanitizers.cu @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +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" |