xref: /llvm-project/clang/test/CodeGen/RISCV/builtin-cpu-is-error.c (revision 875b10f7d0888ca7e53f527f4c30531bd6b50bfb)
1*875b10f7SPengcheng Wang // RUN: not %clang_cc1 -triple riscv64-unknown-linux-gnu -emit-llvm %s -o - 2>&1 \
2*875b10f7SPengcheng Wang // RUN:   | FileCheck %s
3*875b10f7SPengcheng Wang 
4*875b10f7SPengcheng Wang // CHECK: error: invalid cpu name for builtin
5*875b10f7SPengcheng Wang int test_cpu_is_invalid_cpu() {
6*875b10f7SPengcheng Wang   return __builtin_cpu_is("generic-rv64");
7*875b10f7SPengcheng Wang }
8