Displaying 3 results from an estimated 3 matches for "__major".
Did you mean:
v_major
2012 May 24
1
[klibc:master] sys/sysmacros.h: match glibc and define non-__ macros
...s(-)
diff --git a/usr/include/sys/sysmacros.h b/usr/include/sys/sysmacros.h
index c344339..4f0b12a 100644
--- a/usr/include/sys/sysmacros.h
+++ b/usr/include/sys/sysmacros.h
@@ -31,4 +31,8 @@ static __inline__ dev_t makedev(int __ma, int __mi)
return __makedev(__ma, __mi);
}
+#define major(d) __major(d)
+#define minor(d) __minor(d)
+#define makedev(ma,mi) __makedev(ma,mi)
+
#endif /* _SYS_SYSMACROS_H */
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
...nsigned int gnu_dev_major (unsigned long long int __dev)
__attribute__ ((__nothrow__));
__extension__
extern __inline unsigned int gnu_dev_minor (unsigned long long int __dev)
__attribute__ ((__nothrow__));
__extension__
extern __inline unsigned long long int gnu_dev_makedev (unsigned int __major,
unsigned int __minor)
__attribute__ ((__nothrow__));
__extension__ extern __inline unsigned int
__attribute__ ((__nothrow__)) gnu_dev_major (unsigned long long int __dev)
{
return ((__dev >> 8) & 0xfff) | ((unsigned int) (__dev >> 32) & ~0xfff);
}
__extension__ ex...