forked from OSchip/llvm-project
parent
871b4e101c
commit
525bafbd59
|
@ -103,6 +103,13 @@ public:
|
||||||
return WCharWidth;
|
return WCharWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// getIntMaxTWidth - Return the size of intmax_t and uintmax_t for this
|
||||||
|
/// target, in bits.
|
||||||
|
unsigned getIntMaxTWidth(SourceLocation Loc) {
|
||||||
|
// FIXME: implement correctly.
|
||||||
|
return 64;
|
||||||
|
}
|
||||||
|
|
||||||
/// getTargetBuiltins - Return information about target-specific builtins for
|
/// getTargetBuiltins - Return information about target-specific builtins for
|
||||||
/// the current primary target, and info about which builtins are non-portable
|
/// the current primary target, and info about which builtins are non-portable
|
||||||
/// across the current set of primary and secondary targets.
|
/// across the current set of primary and secondary targets.
|
||||||
|
|
Loading…
Reference in New Issue