str_literals.cl 188 B

12345678910111213
  1. // RUN: %clang_cc1 %s -verify
  2. // expected-no-diagnostics
  3. constant char * __constant x = "hello world";
  4. void foo(__constant char * a) {
  5. }
  6. void bar() {
  7. foo("hello world");
  8. foo(x);
  9. }