diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-24 20:45:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-24 20:45:08 +0000 |
commit | d757d3f5c20043db3a6d5e8011ea35832f311086 (patch) | |
tree | 4ad26a254844998993dcf1ef89196f85e6dd8453 /llvm/lib/Support | |
parent | 9650f0678c8542eb77b043b92d093b3f9af2484d (diff) | |
download | bcm5719-llvm-d757d3f5c20043db3a6d5e8011ea35832f311086.tar.gz bcm5719-llvm-d757d3f5c20043db3a6d5e8011ea35832f311086.zip |
switch Triple to take twines instead of stringrefs.
llvm-svn: 135889
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Triple.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index 20026194b85..e1729bfdf37 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/lib/Support/Triple.cpp @@ -8,16 +8,11 @@ //===----------------------------------------------------------------------===// #include "llvm/ADT/Triple.h" - #include "llvm/ADT/SmallString.h" #include "llvm/ADT/STLExtras.h" -#include "llvm/ADT/Twine.h" -#include <cassert> #include <cstring> using namespace llvm; -// - const char *Triple::getArchTypeName(ArchType Kind) { switch (Kind) { case InvalidArch: return "<invalid>"; |