comparison gen/irstate.h @ 305:2b72433d5c8c trunk

[svn r326] Fixed a bunch of issues with printf's that MinGW32 did not support. Fixed problems with label collisions when using labels inside inline asm. LabelStatement is now easily reached given its Identifier, which should be useful elsewhere too. Enabled inline asm for building the lib/compiler/llvmdc runtime code, fixing branches out of asm makes this possible.
author lindquist
date Fri, 27 Jun 2008 22:04:35 +0200
parents bef811104734
children d59c363fccad
comparison
equal deleted inserted replaced
304:3ebc136702dd 305:2b72433d5c8c
72 std::string in_c; 72 std::string in_c;
73 std::vector<LLValue*> out; 73 std::vector<LLValue*> out;
74 std::vector<LLValue*> in; 74 std::vector<LLValue*> in;
75 75
76 // if this is nonzero, it contains the target label 76 // if this is nonzero, it contains the target label
77 LabelDsymbol* isBranchToLabel; 77 Identifier* isBranchToLabel;
78 }; 78 };
79 79
80 struct IRAsmBlock 80 struct IRAsmBlock
81 { 81 {
82 std::vector<IRAsmStmt*> s; 82 std::vector<IRAsmStmt*> s;