Last change
on this file was
8bb86ce,
checked in by JiadaL <j82liang@…>, 5 months ago
|
Clean up some code related to Enum codegen
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Rev | Line | |
---|
[0dd3a2f] | 1 | // |
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
| 3 | // |
---|
| 4 | // The contents of this file are covered under the licence agreement in the |
---|
| 5 | // file "LICENCE" distributed with Cforall. |
---|
| 6 | // |
---|
[50377a4] | 7 | // BasicType.cc -- |
---|
[0dd3a2f] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Mon May 18 07:44:20 2015 |
---|
[c0aa336] | 11 | // Last Modified By : Peter A. Buhr |
---|
[357390f] | 12 | // Last Modified On : Sun Aug 4 21:07:44 2019 |
---|
| 13 | // Update Count : 13 |
---|
[0dd3a2f] | 14 | // |
---|
[51b7345] | 15 | |
---|
[ea6332d] | 16 | #include <cassert> // for assert |
---|
| 17 | #include <list> // for list |
---|
| 18 | #include <ostream> // for operator<<, ostream |
---|
| 19 | |
---|
| 20 | #include "Type.h" // for BasicType, Type, BasicType::Kind, BasicType::Kind... |
---|
| 21 | |
---|
| 22 | class Attribute; |
---|
[51b7345] | 23 | |
---|
[c0aa336] | 24 | BasicType::BasicType( const Type::Qualifiers &tq, Kind bt, const std::list< Attribute * > & attributes ) : Type( tq, attributes ), kind( bt ) {} |
---|
[51b7345] | 25 | |
---|
[50377a4] | 26 | void BasicType::print( std::ostream &os, Indenter indent ) const { |
---|
[0dd3a2f] | 27 | Type::print( os, indent ); |
---|
[de9285f] | 28 | os << BasicType::typeNames[ kind ]; |
---|
[51b7345] | 29 | } |
---|
| 30 | |
---|
[17cd4eb] | 31 | bool BasicType::isInteger() const { |
---|
[cdcddfe1] | 32 | return kind <= UnsignedInt128; |
---|
[51b7345] | 33 | } |
---|
| 34 | |
---|
| 35 | |
---|
[0dd3a2f] | 36 | // Local Variables: // |
---|
| 37 | // tab-width: 4 // |
---|
| 38 | // mode: c++ // |
---|
| 39 | // compile-command: "make install" // |
---|
| 40 | // End: // |
---|
Note: See
TracBrowser
for help on using the repository browser.