https://llvm.org/bugs/show_bug.cgi?id=26410

            Bug ID: 26410
           Summary: __attribute__((interrupt)) compiles never finishes
           Product: new-bugs
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: new bugs
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified

[hjl@gnu-6 interrupt-8]$ cat y.i 
typedef unsigned int uword_t __attribute__ ((mode (__word__)));

extern long double y, x;

void
__attribute__((interrupt))
fn1 (void *frame, uword_t error)
{
  x = 0;
}

void
__attribute__((interrupt))
fn2 (void *frame)
{
  x = y;
}
[hjl@gnu-6 interrupt-8]$ make y.s
/export/build/gnu/llvm-clang-bootstrap/stage1/build-x86_64-linux/bin/clang -O2
-Wall -march=nehalem -S -o y.s y.i

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to