From d0c24a02dc82b38f88ec9f3e515ffbeefe89eb70 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Sat, 1 Aug 2015 05:31:56 +0000 Subject: [PATCH] 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 --- test/CodeGenCXX/exceptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.50.1