mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Opaque types are considered to be first-class.
llvm-svn: 16936
This commit is contained in:
parent
dc7da6c655
commit
08a8f7261e
@ -29,6 +29,8 @@
|
||||
// users of the unknown type, causing them to reference a new, more concrete
|
||||
// type. Opaque types are deleted when their use list dwindles to zero users.
|
||||
//
|
||||
// Opaque types are considered to be first-class types.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_TYPE_H
|
||||
@ -192,7 +194,7 @@ public:
|
||||
/// isFirstClassType - Return true if the value is holdable in a register.
|
||||
inline bool isFirstClassType() const {
|
||||
return (ID != VoidTyID && ID <= LastPrimitiveTyID) ||
|
||||
ID == PointerTyID || ID == PackedTyID;
|
||||
ID == PointerTyID || ID == PackedTyID || ID == OpaqueTyID;
|
||||
}
|
||||
|
||||
/// isSized - Return true if it makes sense to take the size of this type. To
|
||||
|
Loading…
x
Reference in New Issue
Block a user