mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 17:58:22 +00:00
Primitive types don't include integers any more, adjust.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33209 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
58e9746ef3
commit
488228ceb1
@ -534,7 +534,7 @@ namespace llvm {
|
||||
}
|
||||
MachOSection *getConstSection(const Type *Ty) {
|
||||
// FIXME: support cstring literals and pointer literal
|
||||
if (Ty->isPrimitiveType()) {
|
||||
if (Ty->isPrimitiveType() || Ty->isIntegral()) {
|
||||
unsigned Size = TM.getTargetData()->getTypeSize(Ty);
|
||||
switch(Size) {
|
||||
default: break; // Fall through to __TEXT,__const
|
||||
|
Loading…
Reference in New Issue
Block a user