[Flang] Exit gracefully with a useful message when we fail to lookup a target
authorNadeem, Usman <mnadeem@quicinc.com>
Mon, 20 Mar 2023 19:05:18 +0000 (12:05 -0700)
committerNadeem, Usman <mnadeem@quicinc.com>
Mon, 20 Mar 2023 19:08:34 +0000 (12:08 -0700)
commitf67b481098cc30567d0f50a2b21f8f57b92052bd
tree83bc7391f806a8072b5ac0bf89da02a32dd0e676
parent59ff9d3777701ebbe6a59ab2edb8792ef3d2873f
[Flang] Exit gracefully with a useful message when we fail to lookup a target

Without this patch we were asserting with a generic message `Failed to
create Target`, but we already have a detailed error message stored in
the variable `error` after calling `lookupTarget()` but this error was not
getting used/printed.

With this patch we will emit a message with more details instead of a
stack dump with a generic message.

Differential Revision: https://reviews.llvm.org/D146333

Change-Id: I7ddee917cf921a2133ca3e6b35791b2142f770a2
flang/include/flang/Frontend/FrontendActions.h
flang/lib/Frontend/FrontendActions.cpp
flang/test/Driver/target-machine-error.f90 [new file with mode: 0644]