search for: __u_int

Displaying 3 results from an estimated 3 matches for "__u_int".

2011 Oct 01
1
Gstat - Installation Fail _ download source and compile help ...
...can explain me this procedure in a more lucid way. * **Technical Assistant's reply* * Unfortunately, the error is due to a type being used in one of the source files which has not yet been defined in an include file. The "u_int" type is defined in /usr/include/sys/types.h: typedef __u_int u_int; And, the "__u_int" type is defined in /usr/include/bits/types.h: typedef unsigned int __u_int; Note that <bits/types.h> is included at the top of <sys/types.h>, so only the <sys/types.h> would need to be included. Without including <sys/types.h>, the...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...tml> -------------- next part -------------- char copyright[] = "@(#) Copyright (c) 1990 The Regents of the University of California.\n All rights reserved.\n"; typedef long unsigned int size_t; typedef unsigned char __u_char; typedef unsigned short int __u_short; typedef unsigned int __u_int; typedef unsigned long int __u_long; typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef signed short int __int16_t; typedef unsigned short int __uint16_t; typedef signed int __int32_t; typedef unsigned int __uint32_t; typedef signed long int __int64_t; typedef unsigned long int...