aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/ADT/Twine.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/ADT/Twine.h b/include/llvm/ADT/Twine.h
index 6c4905e..cb5bb4d 100644
--- a/include/llvm/ADT/Twine.h
+++ b/include/llvm/ADT/Twine.h
@@ -303,13 +303,6 @@ namespace llvm {
return Twine(&Val, UHexKind, 0, EmptyKind);
}
- // Construct a twine to print \arg Val as an unsigned hexadecimal
- // integer. This routine is provided as a convenience to sign extend values
- // before printing.
- static Twine itohexstr(const int64_t &Val) {
- return Twine(&Val, UHexKind, 0, EmptyKind);
- }
-
/// @}
/// @name String Operations
/// @{