diff --git a/include/llvm/Target/Target.td b/include/llvm/Target/Target.td index c2c56b0aca1..96641dda700 100644 --- a/include/llvm/Target/Target.td +++ b/include/llvm/Target/Target.td @@ -1164,8 +1164,8 @@ def PATCHABLE_TYPED_EVENT_CALL : StandardPseudoInstruction { let hasSideEffects = 1; } def FENTRY_CALL : StandardPseudoInstruction { - let OutOperandList = (outs unknown:$dst); - let InOperandList = (ins variable_ops); + let OutOperandList = (outs); + let InOperandList = (ins); let AsmString = "# FEntry call"; let usesCustomInserter = 1; let mayLoad = 1; diff --git a/test/CodeGen/X86/fentry-insertion.ll b/test/CodeGen/X86/fentry-insertion.ll index c5fb3b254b2..56e32742c59 100644 --- a/test/CodeGen/X86/fentry-insertion.ll +++ b/test/CodeGen/X86/fentry-insertion.ll @@ -1,4 +1,4 @@ -; RUN: llc %s -o - | FileCheck %s +; RUN: llc %s -o - -verify-machineinstrs | FileCheck %s target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" target triple = "x86_64-unknown-linux-gnu"