search for: tree_string_point

Displaying 2 results from an estimated 2 matches for "tree_string_point".

Did you mean: tree_string_pointer
2009 Sep 03
0
[LLVMdev] LLVM 2.6 Cygwin Release
...lvm-gcc-4.2/trunk/gcc/llvm-convert.cpp Sat Aug 29 02:23:49 2009 @@ -7124,7 +7124,7 @@ } else if (ElTy == Type::getInt32Ty(Context)) { assert((Len&3) == 0 && "Length in bytes should be a multiple of element size"); - const uint32_t *InStr = (const unsigned *)TREE_STRING_POINTER(exp); + const uint32_t *InStr = (const uint32_t *)TREE_STRING_POINTER(exp); for (unsigned i = 0; i != Len/4; ++i) { // gcc has constructed the initializer elements in the target endianness, // but we're going to treat them as ordinary ints from here, with ________________...
2006 Mar 09
1
[LLVMdev] ignoring inline assembly
...way I can tell LLVM to pretend the inline assembly isn't there that would be fantastic. >From my own snooping around in the GCC frontend source code, it seems like if I just comment out line 2819: error("LLVM does not yet support inline assembly! Code: '%s'", TREE_STRING_POINTER(ASM_STRING(t))); that LLVM should be able to continue just as if the inline assembly wasn't there. So, will this infact solve my problem and is this the best way to go about it or is there a simpler way? - John -------------- next part -------------- An HTML attachment was scrubbed... URL:...