summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-05-07 22:01:37 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-04-13 01:56:54 +0200
commit1da4cf10b52b888ccb9ae43c7d523d075b509331 (patch)
tree47c6ec5b7ba1577d2eee5f46974d1f092eca45b1 /include/llvm/Support
parent04852c7374686fe061e589fb028768a539c2920b (diff)
downloadllvm-1da4cf10b52b888ccb9ae43c7d523d075b509331.tar.gz
llvm-1da4cf10b52b888ccb9ae43c7d523d075b509331.tar.bz2
llvm-1da4cf10b52b888ccb9ae43c7d523d075b509331.tar.xz
[Embtk]: Give ability to specify default target ABI at configure time
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/Host.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Support/Host.h b/include/llvm/Support/Host.h
index ceb44ce6f3..83ea87bf74 100644
--- a/include/llvm/Support/Host.h
+++ b/include/llvm/Support/Host.h
@@ -79,6 +79,14 @@ namespace sys {
/// to generate by default code with a given hash-style and false otherwise.
bool hasDefaultTargetHashStyle();
+ /// getDefaultTargetAbi() - Return the default target ABI for which the
+ /// compiler is configured to generate code for, or "" if empty.
+ std::string getDefaultTargetAbi();
+
+ /// hasDefaultTargetAbi() - Return true if the compiler was configured to
+ /// generate code for a given ABI and false otherwise.
+ bool hasDefaultTargetAbi();
+
/// getProcessTriple() - Return an appropriate target triple for generating
/// code to be loaded into the current process, e.g. when using the JIT.
std::string getProcessTriple();