mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 01:20:51 +03:00
18 lines
383 B
C++
18 lines
383 B
C++
#ifndef VALUEPARSER_H
|
|
#define VALUEPARSER_H
|
|
|
|
namespace llvm {
|
|
class Constant;
|
|
class Type;
|
|
class DataLayout;
|
|
}
|
|
|
|
struct Context;
|
|
|
|
llvm::Constant *parseInitializer(const Context &context,
|
|
const llvm::DataLayout &dataLayout,
|
|
llvm::Type *type,
|
|
const void *data);
|
|
|
|
|
|
#endif // VALUEPARSER_H
|