From: David Majnemer Date: Sat, 1 Aug 2015 05:31:56 +0000 (+0000) Subject: Use the reserved keyword spelling of 'typeof' X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0c24a02dc82b38f88ec9f3e515ffbeefe89eb70;p=clang Use the reserved keyword spelling of 'typeof' No functional change intended, just a drive-by cleanup. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@243826 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/exceptions.cpp b/test/CodeGenCXX/exceptions.cpp index e8f6c7996a..d6b5942dd2 100644 --- a/test/CodeGenCXX/exceptions.cpp +++ b/test/CodeGenCXX/exceptions.cpp @@ -1,6 +1,6 @@ // RUN: %clang_cc1 %s -triple=x86_64-linux-gnu -emit-llvm -o - -fcxx-exceptions -fexceptions | FileCheck %s -typedef typeof(sizeof(0)) size_t; +typedef __typeof(sizeof(0)) size_t; // This just shouldn't crash. namespace test0 {