Don't list deprecated -std= values (c++0x etc). Only produce one line of output per standard, even if we know it by multiple names. In passing, add missing -std=gnu++03 alias (supported by GCC), and add new spelling '-std=cl1.0' for OpenCL 1.0 for consistency with the other values, with the same meaning as the preexisting '-std=cl'. llvm-svn: 301507
17 lines
616 B
Common Lisp
17 lines
616 B
Common Lisp
// This file checks output given when processing OpenCL files.
|
|
// When user selects invalid language standard
|
|
// print out supported values with short description.
|
|
|
|
// RUN: not %clang %s -std=foobar -c 2>&1 | \
|
|
// RUN: FileCheck --match-full-lines %s
|
|
|
|
// CHECK: error: invalid value 'foobar' in '-std=foobar'
|
|
// CHECK-NEXT: note: use 'cl1.0' for 'OpenCL 1.0' standard
|
|
// CHECK-NEXT: note: use 'cl1.1' for 'OpenCL 1.1' standard
|
|
// CHECK-NEXT: note: use 'cl1.2' for 'OpenCL 1.2' standard
|
|
// CHECK-NEXT: note: use 'cl2.0' for 'OpenCL 2.0' standard
|
|
|
|
// Make sure that no other output is present.
|
|
// CHECK-NOT: {{^.+$}}
|
|
|