constexpr: evaluate (bool)&x as true when x is a local variable or a temporary.

llvm-svn: 149045
diff --git a/clang/test/Sema/const-eval.c b/clang/test/Sema/const-eval.c
index a40039b..22ac67a 100644
--- a/clang/test/Sema/const-eval.c
+++ b/clang/test/Sema/const-eval.c
@@ -24,7 +24,7 @@
 void f()
 {
   int a;
-  EVAL_EXPR(15, (_Bool)&a); // expected-error {{fields must have a constant size}}
+  EVAL_EXPR(15, (_Bool)&a);
 }
 
 // FIXME: Turn into EVAL_EXPR test once we have more folding.