blob: 5e233b0893a3cfd850a3172da279962865e6d76e (
plain)
1
2
3
4
5
|
// RUN: %clang --target=ve-unknown-linux-gnu -### %s 2>&1 | FileCheck %s -check-prefix=DEFAULT
// RUN: %clang --target=ve-unknown-linux-gnu -### %s -mvevpu -mno-vevpu 2>&1 | FileCheck %s -check-prefix=NO-VEVPU
// DEFAULT: "-target-feature" "+vpu"
// NO-VEVPU: "-target-feature" "-vpu"
|