[NFC][RISCV] Remove CFIIndex argument from allocateStack (#117871)
[llvm-project.git] / llvm / test / TableGen / intrinsic-long-name.td
blobc19910d474ed107350d1544d837fbed1725ebd55
1 // RUN: llvm-tblgen -gen-intrinsic-enums -I %p/../../include %s -DTEST_INTRINSICS_SUPPRESS_DEFS | FileCheck %s
2 // XFAIL: vg_leak
4 include "llvm/IR/Intrinsics.td"
6 // Make sure we generate the long name without crashing
7 // CHECK: this_is_a_really_long_intrinsic_name_but_we_should_still_not_crash,  // llvm.this.is.a.really.long.intrinsic.name.but.we.should.still.not.crash
8 def int_foo : Intrinsic<[llvm_anyint_ty], [], [], "llvm.foo">;
9 def int_this_is_a_really_long_intrinsic_name_but_we_should_still_not_crash : Intrinsic<[llvm_anyint_ty], [], [], "llvm.this.is.a.really.long.intrinsic.name.but.we.should.still.not.crash">;