Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaOpenCL / str_literals.cl
blobda665c3fd130728629463625e0f56d743193b435
1 // RUN: %clang_cc1 %s -verify
2 // expected-no-diagnostics
4 constant char * __constant x = "hello world";
6 void foo(__constant char * a) {
10 void bar() {
11 foo("hello world");
12 foo(x);