mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-29 07:39:27 +00:00
Give CurStreamType's enum a name. This works around what is apparently
a bug in Apple GCC 4.0. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121409 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
05018c2f28
commit
e7e4b51afc
@ -61,12 +61,19 @@ NonSymbolic("non-symbolic",
|
|||||||
cl::desc("Emit numberic info in dump even if"
|
cl::desc("Emit numberic info in dump even if"
|
||||||
" symbolic info is available"));
|
" symbolic info is available"));
|
||||||
|
|
||||||
/// CurStreamType - If we can sniff the flavor of this stream, we can produce
|
namespace {
|
||||||
/// better dump info.
|
|
||||||
static enum {
|
/// CurStreamTypeType - A type for CurStreamType
|
||||||
|
enum CurStreamTypeType {
|
||||||
UnknownBitstream,
|
UnknownBitstream,
|
||||||
LLVMIRBitstream
|
LLVMIRBitstream
|
||||||
} CurStreamType;
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/// CurStreamType - If we can sniff the flavor of this stream, we can produce
|
||||||
|
/// better dump info.
|
||||||
|
static CurStreamTypeType CurStreamType;
|
||||||
|
|
||||||
|
|
||||||
/// GetBlockName - Return a symbolic block name if known, otherwise return
|
/// GetBlockName - Return a symbolic block name if known, otherwise return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user