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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
150
anatofuz
parents:
diff changeset
1 // Check that -fsanitize=foo doesn't get passed down to device-side
anatofuz
parents:
diff changeset
2 // compilation.
anatofuz
parents:
diff changeset
3 //
anatofuz
parents:
diff changeset
4 // REQUIRES: clang-driver
anatofuz
parents:
diff changeset
5 //
anatofuz
parents:
diff changeset
6 // RUN: %clang -### -target x86_64-linux-gnu -c --cuda-gpu-arch=sm_20 -fsanitize=address %s 2>&1 | \
anatofuz
parents:
diff changeset
7 // RUN: FileCheck %s
anatofuz
parents:
diff changeset
8
anatofuz
parents:
diff changeset
9 // CHECK-NOT: error: unsupported option '-fsanitize=address'
anatofuz
parents:
diff changeset
10 // CHECK-DAG: "-fcuda-is-device"
anatofuz
parents:
diff changeset
11 // CHECK-NOT: "-fsanitize=address"
anatofuz
parents:
diff changeset
12 // CHECK-DAG: "-triple" "x86_64-unknown-linux-gnu"
anatofuz
parents:
diff changeset
13 // CHECK: "-fsanitize=address"