From 7ccc58f9ffa0d2cad6fcf00b66c0fc0d2fae26e6 Mon Sep 17 00:00:00 2001 From: John Thompson Date: Tue, 21 Sep 2010 22:04:54 +0000 Subject: [PATCH] Fixed pr20314-2.c failure, added E, F, p constraint letters. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114490 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Basic/TargetInfo.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index c7176413e0..14302206d2 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -398,6 +398,10 @@ bool TargetInfo::validateInputConstraint(ConstraintInfo *OutputConstraints, Info.setAllowsRegister(); Info.setAllowsMemory(); break; + case 'E': // immediate floating point. + case 'F': // immediate floating point. + case 'p': // address operand. + break; case ',': // multiple alternative constraint. Ignore comma. break; case '?': // Disparage slightly code. -- 2.50.1