~eda-qa/leaflang/platform

« back to all changes in this revision

Viewing changes to include/platform/gnu_linux_x86_64.hpp

  • Committer: edA-qa mort-ora-y
  • Date: 2018-04-27 15:00:55 UTC
  • Revision ID: eda-qa@disemia.com-20180427150055-t3xy2ob0d94al2pe
add darwin test bits

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
namespace platform {
3
3
 
4
 
class gnu_linux_x86_64 : public defn {
5
 
public:
6
 
        gnu_linux_x86_64();
7
 
        
 
4
class x86_64 : public defn {
 
5
public: 
8
6
        int aligned_value_size( leaf::type_ref const & type ) const override;
9
7
        native_float const * if_get_float( int float_size ) const override;
10
8
        native_float const * if_get_float_precision( int prec ) const override;
11
9
};
12
10
 
 
11
class gnu_linux_x86_64 : public x86_64 {
 
12
public:
 
13
        gnu_linux_x86_64();
 
14
};
 
15
 
 
16
class apple_darwin_x86_64 : public x86_64 {
 
17
public:
 
18
        apple_darwin_x86_64();
 
19
};
 
20
 
13
21
} //eon platform