r280968 - Revert "[XRay] ARM 32-bit no-Thumb support in Clang"

Renato Golin via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 8 10:12:32 PDT 2016


Author: rengolin
Date: Thu Sep  8 12:12:32 2016
New Revision: 280968

URL: http://llvm.org/viewvc/llvm-project?rev=280968&view=rev
Log:
Revert "[XRay] ARM 32-bit no-Thumb support in Clang"

This reverts commit r280889, as the original LLVM commits broke the thumb
buildbots.

Removed:
    cfe/trunk/test/CodeGen/xray-attributes-supported-arm.cpp

Removed: cfe/trunk/test/CodeGen/xray-attributes-supported-arm.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/xray-attributes-supported-arm.cpp?rev=280967&view=auto
==============================================================================
--- cfe/trunk/test/CodeGen/xray-attributes-supported-arm.cpp (original)
+++ cfe/trunk/test/CodeGen/xray-attributes-supported-arm.cpp (removed)
@@ -1,13 +0,0 @@
-// RUN: %clang_cc1 %s -fxray-instrument -std=c++11 -x c++ -emit-llvm -o - -triple arm-unknown-linux-gnu | FileCheck %s
-
-// Make sure that the LLVM attribute for XRay-annotated functions do show up.
-[[clang::xray_always_instrument]] void foo() {
-// CHECK: define void @_Z3foov() #0
-};
-
-[[clang::xray_never_instrument]] void bar() {
-// CHECK: define void @_Z3barv() #1
-};
-
-// CHECK: #0 = {{.*}}"function-instrument"="xray-always"
-// CHECK: #1 = {{.*}}"function-instrument"="xray-never"




More information about the cfe-commits mailing list