]> granicus.if.org Git - clang/commit
Replace APFloatBase static fltSemantics data members with getter functions
authorStephan Bergmann <sbergman@redhat.com>
Wed, 14 Dec 2016 11:57:17 +0000 (11:57 +0000)
committerStephan Bergmann <sbergman@redhat.com>
Wed, 14 Dec 2016 11:57:17 +0000 (11:57 +0000)
commit4ed04dd935e98ad1a79bf9a2444a84db3858783d
tree84471c7124d4ed8f631fe74fa2a42462bc2c1d17
parent631f1e728a6903f320a40e7b5035a63acd0acdc7
Replace APFloatBase static fltSemantics data members with getter functions

At least the plugin used by the LibreOffice build
(<https://wiki.documentfoundation.org/Development/Clang_plugins>) indirectly
uses those members (through inline functions in LLVM/Clang include files in turn
using them), but they are not exported by utils/extract_symbols.py on Windows,
and accessing data across DLL/EXE boundaries on Windows is generally
problematic.

Differential Revision: https://reviews.llvm.org/D26671

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@289647 91177308-0d34-0410-b5e6-96231b3b80d8
13 files changed:
include/clang/ASTMatchers/ASTMatchersInternal.h
lib/AST/APValue.cpp
lib/AST/Expr.cpp
lib/AST/ExprConstant.cpp
lib/Basic/TargetInfo.cpp
lib/Basic/Targets.cpp
lib/CodeGen/CGExprConstant.cpp
lib/CodeGen/CodeGenTypes.cpp
lib/CodeGen/TargetInfo.cpp
lib/Frontend/InitPreprocessor.cpp
lib/Sema/SemaExpr.cpp
lib/Sema/SemaOverload.cpp
tools/libclang/CIndex.cpp