Add a target asm info hook to specify that particular bits of data in the FDE
[oota-llvm.git] / include / llvm / GlobalVariable.h
index 28eaa624e9d2b2e710cce9d0f0568748712b5696..f18554d53b5c64d911366a66f017ed998760e4bc 100644 (file)
@@ -52,13 +52,13 @@ public:
   /// automatically inserted into the end of the specified modules global list.
   GlobalVariable(LLVMContext &Context, const Type *Ty, bool isConstant,
                  LinkageTypes Linkage,
-                 Constant *Initializer = 0, const std::string &Name = "",
+                 Constant *Initializer = 0, const Twine &Name = "",
                  bool ThreadLocal = false, unsigned AddressSpace = 0);
   /// GlobalVariable ctor - This creates a global and inserts it before the
   /// specified other global.
   GlobalVariable(Module &M, const Type *Ty, bool isConstant,
                  LinkageTypes Linkage, Constant *Initializer,
-                 const std::string &Name,
+                 const Twine &Name,
                  GlobalVariable *InsertBefore = 0, bool ThreadLocal = false,
                  unsigned AddressSpace = 0);