aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/Tools/StringExtras.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Tools/StringExtras.h b/include/llvm/Tools/StringExtras.h
index 31dedb4..819da2f 100644
--- a/include/llvm/Tools/StringExtras.h
+++ b/include/llvm/Tools/StringExtras.h
@@ -9,6 +9,7 @@
#define LLVM_TOOLS_STRING_EXTRAS_H
#include <string>
+#include <stdio.h>
#include "llvm/Tools/DataTypes.h"
static inline string utostr(uint64_t X, bool isNeg = false) {
@@ -60,4 +61,10 @@ static inline string itostr(int X) {
return utostr((unsigned)X);
}
+static inline string ftostr(double V) {
+ char Buffer[200];
+ snprintf(Buffer, 200, "%f", V);
+ return Buffer;
+}
+
#endif