Displaying 2 results from an estimated 2 matches for "7d0f71f8".
2010 Jun 18
0
[LLVMdev] Optimizing Boolean Expression
On Thu, Jun 17, 2010 at 4:30 PM, Ehsan Amiri <ehsanamiri at gmail.com> wrote:
> Hello
>
> I compiled the following program using the web interface
>
> #include <stdio.h>
> #include <stdlib.h>
>
> int main(int argc, char **argv) {
> int a; int b; int c; int d;
> int X = 10;
> a = 777;
> b = a | (atoi(argv[1]));
> c = b |
2010 Jun 17
2
[LLVMdev] Optimizing Boolean Expression
Hello
I compiled the following program using the web interface
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv) {
int a; int b; int c; int d;
int X = 10;
a = 777;
b = a | (atoi(argv[1]));
c = b | (atoi(argv[2]));
a = c | (atoi(argv[4]));
b = a | (atoi(argv[5]));
d = b | (atoi(argv[6]));
a = d | (atoi(argv[7]));
b = a | (atoi(argv[8]));
c =