http://llvm.org/bugs/show_bug.cgi?id=18815

            Bug ID: 18815
           Summary: Assertion failed: isValidGCCRegisterName(Name) &&
                    "Invalid register passed in"
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: Frontend
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

$ cat yyy.c
long int float2int(float f) {
  int x;
  _asm {
    fld f
    fistp x
  }
  return x;
}

$ clang -cc1 -triple i386-pc-win32 -emit-obj -fms-compatibility -x c yyy.c
Assertion failed: isValidGCCRegisterName(Name) && "Invalid register passed in",
file ..\tools\clang\lib\Basic\TargetInfo.cpp, line 354

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to