[ms-inline asm] Add the convertToMapAndConstraints() function that is used to
[oota-llvm.git] / utils / TableGen / StringToOffsetTable.h
index 6d528a2b0a7d9064101afe2a4a11f21e23f7a841..a098d7d744a14c21e134e1333b2419e7699827b4 100644 (file)
@@ -14,6 +14,7 @@
 #include "llvm/ADT/StringMap.h"
 #include "llvm/ADT/StringExtras.h"
 #include "llvm/Support/raw_ostream.h"
+#include <cctype>
 
 namespace llvm {
 
@@ -40,9 +41,6 @@ public:
   }
   
   void EmitString(raw_ostream &O) {
-    assert(AggregateString.size() <= 65536 &&
-           "Aggregate string too large to be portable");
-
     // Escape the string.
     SmallString<256> Str;
     raw_svector_ostream(Str).write_escaped(AggregateString);