From 06ea151895e220516da4831ac226ada092311f99 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 20 Oct 2003 19:43:47 +0000 Subject: [PATCH] Made error message more comprehensible. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9299 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/CodeGeneratorBug.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/bugpoint/CodeGeneratorBug.cpp b/tools/bugpoint/CodeGeneratorBug.cpp index e83ef118360..41df79a110a 100644 --- a/tools/bugpoint/CodeGeneratorBug.cpp +++ b/tools/bugpoint/CodeGeneratorBug.cpp @@ -167,7 +167,8 @@ bool ReduceMisCodegenFunctions::TestFuncs(const std::vector &Funcs, } else { // FIXME: need to take care of cases where a function is used that // is not an instruction, e.g. global variable initializer... - std::cerr << "Non-instruction is using an external function!\n"; + std::cerr << + "UNSUPPORTED: External function used as global initializer!\n"; abort(); } } -- 2.34.1