]> granicus.if.org Git - clang/commitdiff
Use a heralded conversion to bool in inline-asm constraints.
authorJohn McCall <rjmccall@apple.com>
Tue, 10 May 2011 23:39:47 +0000 (23:39 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 10 May 2011 23:39:47 +0000 (23:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131170 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaStmt.cpp
test/Sema/asm.c

index a60fcb7097c2bbc987a6fe3d90ebdb6d27092093..60fcb10d53610101f50c66f2a0a568ad9b3b2f48 100644 (file)
@@ -2016,7 +2016,9 @@ StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc, bool IsSimple,
     if (InputDomain == AD_Int && OutputDomain == AD_Int &&
         !isOperandMentioned(InputOpNo, Pieces) &&
         InputExpr->isEvaluatable(Context)) {
-      InputExpr = ImpCastExprToType(InputExpr, OutTy, CK_IntegralCast).take();
+      CastKind castKind =
+        (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
+      InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).take();
       Exprs[InputOpNo] = InputExpr;
       NS->setInputExpr(i, InputExpr);
       continue;
index 7f0f396b9d82dc7d853a06065ff6e9deb24be7eb..d8161c819b99078a5323406ee008b194fb997e1d 100644 (file)
@@ -105,3 +105,11 @@ void test10(void){
   register int r asm ("cx");
   register int rr asm ("rr_asm"); // expected-error{{unknown register name 'rr_asm' in asm}}
 }
+
+// This is just an assert because of the boolean conversion.
+// Feel free to change the assembly to something sensible if it causes a problem.
+// rdar://problem/9414925
+void test11(void) {
+  _Bool b;
+  asm volatile ("movb %%gs:%P2,%b0" : "=q"(b) : "0"(0), "i"(5L));
+}