Displaying 5 results from an estimated 5 matches for "nbaz".
Did you mean:
baz
2006 May 10
2
hard_breaks
Dear Dressers of RedCloth,
I have a question:
text = "Foo\nBar\n\nBaz"
RedCloth.new(text, [ :hard_breaks ]).to_html
# => "<p>Foo<br />Bar<br />\nBaz</p>"
Shouldn''t that really be "<p>Foo<br />Bar</p><p>Baz</p>"?
So long,
--
Christoffer Sawicki
2013 Jan 08
6
[LLVMdev] LTO "bug" and Clang warnings
...} S;
void setup() {
int i;
// OVERWRITES ALL THREE ARRAYS
for (i=0; i<60; i++)
S.foo[i] = i; // ONLY REFERENCES FOO
}
// DOESN'T USE FOO
int main() {
int i;
setup();
printf("Bar: ");
for (i=0; i<20; i++)
printf("%d ", S.bar[i]);
printf("\nBaz: ");
for (i=0; i<20; i++)
printf("%d ", S.baz[i]);
puts("");
return 0;
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130108/17058d89/attachment.html>
2013 Jan 08
0
[LLVMdev] LTO "bug" and Clang warnings
...; for (i=0; i<60; i++)
> S.foo[i] = i; // ONLY REFERENCES FOO
> }
>
> // DOESN'T USE FOO
> int main() {
> int i;
> setup();
> printf("Bar: ");
> for (i=0; i<20; i++)
> printf("%d ", S.bar[i]);
> printf("\nBaz: ");
> for (i=0; i<20; i++)
> printf("%d ", S.baz[i]);
> puts("");
>
> return 0;
> }
>
2013 Jan 08
1
[LLVMdev] LTO "bug" and Clang warnings
....foo[i] = i; // ONLY REFERENCES FOO
>> }
>>
>> // DOESN'T USE FOO
>> int main() {
>> int i;
>> setup();
>> printf("Bar: ");
>> for (i=0; i<20; i++)
>> printf("%d ", S.bar[i]);
>> printf("\nBaz: ");
>> for (i=0; i<20; i++)
>> printf("%d ", S.baz[i]);
>> puts("");
>>
>> return 0;
>> }
>>
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/p...
2013 Jan 08
0
[LLVMdev] LTO "bug" and Clang warnings
...RAYS
> for (i=0; i<60; i++)
> S.foo[i] = i; // ONLY REFERENCES FOO
> }
>
> // DOESN'T USE FOO
> int main() {
> int i;
> setup();
> printf("Bar: ");
> for (i=0; i<20; i++)
> printf("%d ", S.bar[i]);
> printf("\nBaz: ");
> for (i=0; i<20; i++)
> printf("%d ", S.baz[i]);
> puts("");
>
> return 0;
> }
>
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
&...