1 //===- SystemUtils.cpp - Utilities for low-level system tasks -------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file contains functions used to do a variety of low-level, often
10 // system-specific, tasks.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Support/SystemUtils.h"
15 #include "llvm/Support/raw_ostream.h"
18 bool llvm::CheckBitcodeOutputToConsole(raw_ostream
&stream_to_check
,
20 if (stream_to_check
.is_displayed()) {
22 errs() << "WARNING: You're attempting to print out a bitcode file.\n"
23 "This is inadvisable as it may cause display problems. If\n"
24 "you REALLY want to taste LLVM bitcode first-hand, you\n"
25 "can force output with the `-f' option.\n\n";