gcc and as bug

2005-03-23 Thread RAZ
I have encountered what seems to be an error of unforgiving nature when 
attempting to compile a device driver for the parallel port.  I also 
attempted to compile the example given in Riku Saikkonen's HOW TO on I/O 
port programming using options 0-6 with the same result.
The error is centered on the use of inb and outb (macros I understand) 
in my C program (and Saikkonen's).  When removed it compiles.
The error is: Error: suffix or operands invalid for 'in'  { also for 'out'}.
My configuration is: glibc=2.3.2, gcc=3.2.3, as=2.14.90.0.6 20030820, 
kernel 2.4.22, vendor Slackware 9.1, motherboard=KT4V-L, CPU=AMD 2200+, 
circa 1.8GHz, FSB=133 MHz.
If you could point me to the resolution, as I am sure I am not the 
first, I would appreciate it as this has been ongoing for 10 days now 
and are not able to find a
solution on the web.

Thanks,
Ron Riese [EMAIL PROTECTED]


[Bug c++/79751] New: Concept placeholder on another concept doe not work

2017-02-28 Thread saar at raz dot email
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79751

Bug ID: 79751
   Summary: Concept placeholder on another concept doe not work
   Product: gcc
   Version: c++-concepts
Status: UNCONFIRMED
  Severity: normal
  Priority: P3
 Component: c++
  Assignee: unassigned at gcc dot gnu.org
  Reporter: saar at raz dot email
  Target Milestone: ---

The following program returns 1 with the latest gcc 7 snapshot:

template
concept bool FalseConcept = false;

template
concept bool AnotherConcept = true;

int main() {
return AnotherConcept;
}