Before:
t2: i32,ch = load t0, t0, t1<LD4[FixedStack-1]> [ORD=1]
t7: i32 = Constant<0>
Now:
t2 = load:i32,ch t0, t0, t1 <LD4[FixedStack-1]> [ORD=1]
t7 = Constant:i32 <0>
Details
Details
- Reviewers
resistor
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
I'm not sure how much I care either way, but can't you just omit the '=' sign when printing the constants inline?
Comment Actions
My thinking here was:
- The datatype is just another attribute stored with the node, it is not an attribute of the magic value marker tXX
- the output is consistent for inlined and non-inlined nodes.
Anyway I don't really care either for this (the inline printing is what I care about). So if this won't get a LGTM I'll change it to the suggested variant of just leaving out the equal sign when printing inline.
Comment Actions
I think that I'd prefer that. I'm leaning toward saying that the node:type formatting actually makes things more difficult to read.