Use the reserved keyword spelling of 'typeof'

No functional change intended, just a drive-by cleanup.

llvm-svn: 243826
This commit is contained in:
David Majnemer 2015-08-01 05:31:56 +00:00
parent 78633802c2
commit e40fe37c43
1 changed files with 1 additions and 1 deletions

View File

@ -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 {