support of LLVM trunk

This commit is contained in:
Ilia Filippov
2013-11-29 14:24:21 +04:00
parent c751e44c6c
commit b94b89ba68

View File

@@ -241,7 +241,11 @@ namespace {
class CBEMCAsmInfo : public llvm::MCAsmInfo { class CBEMCAsmInfo : public llvm::MCAsmInfo {
public: public:
CBEMCAsmInfo() { CBEMCAsmInfo() {
#if defined(LLVM_3_5)
GlobalPrefix = '\0';
#else
GlobalPrefix = ""; GlobalPrefix = "";
#endif
PrivateGlobalPrefix = ""; PrivateGlobalPrefix = "";
} }
}; };